just trying to use a function to add comments to each page (not posts)
I could not find a hook inside the content area of a page, but saw anyThematicActionHook somewhere not sure if it is for real.
<?php
/* Add Comments to pages */
function add_page_comments() {
if (is_page()) {
?>
<?php comments_template(); ?>
<?php
}
}
add_action('anyThematicActionHook', 'add_page_comments');
?>
I also tried
<?php thematic_comments_template(); ?>
I just figured out that I could add the comments template to the page bottom widget with a php code widget box. But I would rather use a function include like shown above.
Any suggestions on making this work?