Hi,
I've recently started to use broadscope for our company site, I would like it if the Author of the blog post was shown underneath the date, above the categories. Where would I change this in the theme?
Thanks
Jamie
Hi,
I've recently started to use broadscope for our company site, I would like it if the Author of the blog post was shown underneath the date, above the categories. Where would I change this in the theme?
Thanks
Jamie
Hi Jamie,
Kindly go to: wp-content\thmes\broadscope\includes\loop-index.php. and find this line of code:
the_category(', ');
then below it add this code:
echo '<p>Author: <a href="' . get_the_author_link . '">' . get_the_author() . '</a></p>';
Then go to: wp-content\themes\broadscope\css\custom.css, and add this code(place it on the bottom):
.blog-categories p {
font-size: 10px !important;
}
Hope this helps. :)
Regards,
Ismael
Thank you that worked great!
Hi jamieisboss,
Glad that I could help you. :)
Cheers,
Ismael
You must log in to post.