A collection of Thesis WordPress theme links, snippets and source code for the Thesis developer
Custom Web Page Template
A simple skeleton of a custom web page
function sample_custom_webpage() {
if (is_page('sample-custom-webpage')) { ?>
<div id="content">
<div class="post_box top">
<div class="headline_area">
<h1>Sample Custom Webpage</h1>
</div>
<div class="format_text">
<h3>Custom Web Page</h3>
<p>Select 'Custom Template' from page options </p>
</div>
</div><!-- close post_box -->
</div><!-- close contents -->
<div id="sidebars">
<?php thesis_build_sidebars(); ?>
</div>
<?php } }
remove_action('thesis_hook_custom_template', 'thesis_custom_template_sample');
add_action('thesis_hook_custom_template', 'sample_custom_webpage');
Sitemap Webpage
Many of us know how important on-page sitemaps are.
