Hey!
Is it possible to hide/exclude one specific Author from post’s?
If i dont want the admin author to show up on post’s added by admin, but still have the author box showing when other authors post.
Thanks in advice
Just to make sure, it is the author box on post where “admin” is the author i want to hide.
Is it possible to have the function in a future release of the theme?
I saw other people requesting it too. or is it too hard to program?
Hi,
Add this code:
<?php
if (get_the_author_meta('ID') != 1) {
echo $td_mod_single->get_author_box();
}
?>
instead of this one: http://screencast.com/t/4gwlLozs
In the code above 1 mean posts written by the author with ID 1 will not have the author box. Change the ID from which author you want to hide the box.
Hope this help.
Thanks for your message!
Hey Marius, thanks but i do not have an loop-single.php i only got loop-simple.php , how can that be ?
thanks
Np, i found out Marius it was because i had not updated yet.
Testing your code :0)
Edit / works flawless!
Thank you very much, and nice update to the theme!
-
This reply was modified 12 years by
dillermand16.
