Remove 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 moreDisplay 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 morethis months featured snippets
Display 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 moreDisplay 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 moreDisplay list of authors in a dropdown menu using wp_dropdown_users
Adding this snippet to your wordpress template will display a list of authors within a dropdown menu linking to their author profiles. I also excluded the default user ’1′ as the administrators would also be display. This is a comma separated list so you can remove any users that you don’t wish to display.
read more












