Dear Chandra, I couldn't find the content-X-php files. I found content.php.
Here's what I found in that area.
[ Moderator Note: Please post code or markup snippets between backticks or use the code button. ]
<div class="entry-meta">
<?php book_posted_by(); ?>
<?php if ( 'post' == get_post_type() ) : ?>
<div class="entry-meta">
<?php book_posted_by(); ?>
<?php
/* translators: used between list items, there is a space after the comma */
$categories_list = get_the_category_list( __( ', ', 'book' ) );
if ( $categories_list && book_categorized_blog() ) :
?>
<span class="cat-links">
<?php _e( ' under ', 'book' ) ?><?php printf( $categories_list ); ?>
</span>
<?php endif; ?>
Is this the correct spot? I see the "<?php book_posted_by(); ?>" which makes it seem like the right place. Can I just remove some of this code to end up with "by elifair" with no categories listed? The categories are given later in the post, so I don't need them here.
Any help would be appreciated. Thank you.