/ Published in: PHP
URL: http://scottnix.com/code/wordpress/thematic-snippets/
Insert a random div example with WordPress conditional logic to a Thematic action hook.
Expand |
Embed | Plain Text
// add random div with conditional set function snix_quick_div2() { if (is_single()) { ?> <div class="social-links"> HTML FOR SINGLE POST ONLY </div> <?php } else { ?> <div class="other-links"> HTML FOR EVERY OTHER PAGE </div> <?php } } add_action('thematic_abovefooter','snix_quick_div2');
You need to login to post a comment.
