Am I correct in assuming that I use the conditional tag is_single() to display content specific to single post pages in wordpress? I'm using the thesis theme and would like to display content after the post which is specific to blog post pages. I'm using the open hook plugin. Some help would be appreciated.
You are right is_single() works for single post specific pages and is_page() for Single Page, Have a look at http://codex.wordpress.org/Conditional_Tags
Check out this plugin that allows you to display Section Specific Content : http://weblogtoolscollection.com/pl...ction-widget-for-your-section-specific-needs/
To display content after post box in thesis theme function your_function_name() { if (is_single()) { ?> //Call your Php or Html tag or function here <?php } } add_action('thesis_hook_after_post_box', 'your_function_name'); Code (markup): To display content after post in thesis theme function your_function_name() { if (is_single()) { ?> //Call your Php or Html tag or function here <?php } } add_action('thesis_hook_after_post', 'your_function_name'); Code (markup):