/ Published in: PHP
URL: http://scottnix.com/code/wordpress/thematic-snippets/
Example of inserting a random div on to a thematic action hook.
Expand |
Embed | Plain Text
// add random div function snix_quick_div() { ?> <div class="any-class"> HTML HERE </div> <?php } add_action('thematic_abovefooter','snix_quick_div');
You need to login to post a comment.
