Home › Forums › Pro Support › Remove WP Show Posts Menu Item for Editors Tagged: admin, menu, remove menu item This topic has 3 replies, 2 voices, and was last updated 6 years, 2 months ago by Tom. Viewing 4 posts - 1 through 4 (of 4 total) Author Posts January 20, 2017 at 6:10 am #1465 DanielParticipant Is there any way to remove the WP Show Posts menu item from the admin area? I would only like it to show for Administrators. January 20, 2017 at 11:19 am #1469 TomKeymaster Hi Daniel, Give this function a try: add_action( 'admin_menu', 'wpse28782_remove_menu_items' ); function wpse28782_remove_menu_items() { if( !current_user_can( 'administrator' ) ): remove_menu_page( 'edit.php?post_type=wp_show_posts' ); endif; } January 20, 2017 at 11:29 am #1471 DanielParticipant Perfect, you da man 🙂 January 20, 2017 at 11:09 pm #1477 TomKeymaster Glad it worked 🙂 Author Posts Viewing 4 posts - 1 through 4 (of 4 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In