Tagged: dnapoker
After a posts gets crawled and indexed authors name appears alongside, so do i remove authors name from showing in search results?
Hi John,
To remove author name just go to theme directory > inc > functions.php on line no: 176 you will find below line of code:
echo '<div class="date">' . $posted_on . '</div> <div class="by-author vcard author">' . $byline . '</div>';
just replace above mentioned code to the below one.
echo '<div class="date">' . $posted_on . '</div> ;
Thank you!
what will be the code If I want to remove the date as well from the post?
Hi kyle.baryan3210,
If you want to remove the Date as well then you have to remove all the above mention code.
Thanks