jkroyer 0 Report post Posted January 7, 2011 I would love it if I could hide just author in posts. I would like to do it using custom code... And maybe format the postpage so it display a rectangle thumb picture + text underneath. For those interested my site is: http://www.jonaskroyer.com/photography/techref Share this post Link to post Share on other sites
Andrew 207 Report post Posted January 7, 2011 Ya couldn't you just hide the author information using custom css? Share this post Link to post Share on other sites
jkroyer 0 Report post Posted January 10, 2011 I have no clue what to write in custom css Can anyone help please? Share this post Link to post Share on other sites
Kate 3 Report post Posted January 10, 2011 I'm assuming in "Theme Options->Pages and Posts" you've deselected "Show author info in posts", correct? EDIT: I just checked and I'm not seeing the author's info... Did you already hide it? Share this post Link to post Share on other sites
jkroyer 0 Report post Posted January 12, 2011 Hi Kate Thanks for your suggestion but it is still there. http://www.jonaskroyer.com/photography/techref Share this post Link to post Share on other sites
cmunns 16 Report post Posted January 12, 2011 You will have to edit your _posts.php file Find this line: `<?php _e('by',TDOMAIN);?> <?php the_author(); ?>` and wrap it like this: ` <?php if(!is_home()):?> <?php _e('by',TDOMAIN);?> <?php the_author(); ?> <?php endif;?> ` Share this post Link to post Share on other sites