actually i have a similar issue, that piggy backs off this one.
on the category pages of the site (example: https://greenrefurbishing.com/wordpress/category/coupons/), below the excerpt it shows Posted In: Category XYZ [COLOR=”Red”]| Leave a comment[/COLOR]. I want to remove everything after Category XYZ, in red above.
But in this instance, the code that creates this functionality, as far as i can tell, is found in lines 157-161 of the loop.php file of the parent folder, not functions.php.
<span class="meta-sep">|</span>
<?php endif; ?>
<span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>
<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
</div><!-- .entry-utility -->
so in this instance, do i also add something to the child’s functions.php file to cancel out this function, even though it originates from the loop.php file???