Deprecated: Hook custom_css_loaded is deprecated since version jetpack-13.5! Use WordPress Custom CSS instead. Jetpack no longer supports Custom CSS. Read the WordPress.org documentation to learn how to apply custom styles to your site: https://wordpress.org/documentation/article/styles-overview/#applying-custom-css in /srv/www/srvfail.com/public_html/wp-includes/functions.php on line 6078
How to remove author name on all your WordPress posts ⋆ SysAdminStuff

How to remove author name on all your WordPress posts

Author name and links can be hidden in all WordPress posts on your site, by editing the default CSS Stylesheet, and adding the following to it:

.author {
     display: none;
}

Go to Appearance > Edit CSS, and you will be taken to CSS Stylesheet Editor.

Default CSS Stylesheet for Twenty Sixteen theme should look like this.

/*
Welcome to Custom CSS!

To learn how this works, see http://wp.me/PEmnE-Bt
*/

It should look something like this, after you add the snippet to hide name and link of the site account used to make the post.

/*
/*
Welcome to Custom CSS!

To learn how this works, see http://wp.me/PEmnE-Bt
*/
/* Remove posting account links from all posts*/
.author {
	display: none;
}

Source:

https://en.forums.wordpress.com/topic/can-i-remove-author-in-all-my-posts

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.