Display comments in admin to authors own posts only
Only show the comments to the authors own posts within the wordpress admin, hide all other comments. This is a great little snippet if you want authors to look after their own comments. Just add this snippet to the functions.php of your wordpress theme and you are ready to go.
read moreRemove support for specific post type features
Adding this snippet to the functions.php of your wordpress theme will remove support for the specific features bellow from specified post types. Change the word ‘post’ to anything you like including a custom post type name or the default post, page.
read morethis months featured snippets
Display user with the most comments with count, email, author url
Adding this snippet to the functions.php of your wordpress theme will let you display the top commenter list of users. Use $result->comment_author_email, $result->comments_count, $result->comment_author_url, to add additional parameters to this snippet.
read moreGive author capabilities including editing other authors posts
Adding this snippet to the functions.php of your wordpress theme will allow authors to edit other users posts.
read moreDisplay author avatar within posts or pages
Adding this snippet to your wordpress theme within the loop will display the current authors avatar.
read moreRemove post via email settings
Adding this snippet to the functions.php of your wordpress theme will remove the post by emails settings within the settings menu under writing.
read moreDisplay random messages of encouragement, posts
Adding this snippet to the functions.php of your wordpress theme will allow you to display random messages of encouragement to an author when they create a new post. Messages are displayed in the title field and the content field of new posts and don’t forget to update the array of messages to suite your needs.
read morelast months featured snippets
Display top 8 authors in wp_nav_menu using wp_list_authors
Adding this snippet to the functions.php of your wordpress theme will add an authors item to your wp_nav_menu listing top eight authors by post count.
read more




















