Jump to content
Sign in to follow this  
jkroyer

How to remove author in posts...

Recommended Posts

Andrew

Ya couldn't you just hide the author information using custom css?

Share this post


Link to post
Share on other sites
jkroyer

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

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
cmunns

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

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

×