Sorry, I wasn’t trying to over post. I thought that, after not receiving an answer all day, I had posted the question in the wrong section so I moved it to a new section. Then after I posted, I thought that maybe I was asking the question in the wrong way so I reworded it.
Anyway, thanks for the response. I’m actually not sure what else I can add. I’m using the 2015 theme, which only displays the post title at the top of the post. I would like to add author, date, and category just under this (before the body of my posts). Originally I was trying to develop my own theme and had this much working. However I decided the rest of theme kind of sucked and liked 2015 and decided to go with that. I like it, just can’t figure out how to add the author and date under the title.
The code I was using in my own theme is pasted below. I don’t see where to add this in 2015. The codex says to add this to the loop. But the codex seems to be speaking to a much earlier version of WP. From what I can see, the loop no longer “walks through” these individual steps and there is just one command/function that displays everything and that it can’t be parsed. (I’m assuming this is the command: get_template_part( ‘content’, get_post_format() );
I’m a novice to both WP and PHP though, so I could be missing something obvious. Thanks for any help!
Code on my original theme:
<?php while (have_posts()) : the_post(); ?>
<div id=”title”>
” rel=”bookmark” title=”Permanent Link to <?php the_title_attribute(); ?>”>
<?php the_title(); ?></div>
<div id=”category_date_comments”>Category: <?php the_category(‘, ‘) ?> | Author: <?php the_author_posts_link(); ?></div>
<div id=”category_date_comments” style=”margin-right:20px”><?php the_time(‘m/d/Y’) ?></div>
<div id=”entry”>
<?php $content = get_the_content(‘Read more’);
print $content;
?>
</div>
<?php endwhile; ?>