Display Author

Posted in: Newspaper
Post count: 4

Hey guys,

How would I go about adding the author in the meta data of each post?

For example next to the date of each article, I would like to have the author (with link to their author page displaying all their content that WordPress generates)

Thanks!

Post count: 9544

Hi,
do a search in the forum, as you have to uncomment this in the main post template at this time. It would then add the author name above the feature image below headline next to the category name(s) on each post / article page.

If you’re using an SEO plugin, the author name is added to the “meta” data in the HEAD of the HTML for each post.

Post count: 9544

basically, in loop-single.php

uncomment the author item here:

            <div class="meta-info">
                <?php echo $td_mod_single->get_category();?>
                <?php //echo $td_mod_single->get_author();?>
                <?php echo $td_mod_single->get_date(false);?>
                <?php echo $td_mod_single->get_commentsAndViews();?>
            </div>
Viewing 3 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic.