Hi all,
I thought I was on the right track with this but it does not change anything. I'm trying to replace the content.
function my_singlepost() {
if (is_single() && post_is_in_descendant_category(get_term_by( 'name', 'gallery' ))):?>
<div class="single-gallery-post">
<div class="single-gallery-image">
Image holder...
</div>
<div class="single-gallery-cap">
Caption holder...
</div>
</div>
<?php endif;?>
<?php }
add_action('thematic_content','my_singlepost');
Do I need to have a function to remove something first, or am I way off on this one?
Thanks, Travis