• Lambkin

    (@lambkin)


    Hi there!

    Is there any chance to remove or disable the “Posts” section from a wordpress-blog?
    I tried to find a solution for a long time and didn’t succeed.

    My Client doesn’t need this section and this section activated, there’s an ugly freespace on the website.

    Support would be highly appreciated.

    So far, thanks!

    Marcel

Viewing 1 replies (of 1 total)
  • Moderator Jose Castaneda

    (@jcastaneda)

    THEME COFFEE MONKEY

    What solution did you find that isn’t working?

    You would just remove the menu if you really wanted to. You could try:

    add_action( 'admin_menu', 'remove_posts_menu' );
    function remove_posts_menu(){
    	remove_menu_page( 'edit.php' );
    }

    Using that as a must-use plugin or just a simple plugin should to the trick. Granted it doesn’t fully remove the post type just the menu item.

Viewing 1 replies (of 1 total)
  • The topic ‘Removing "Posts" Section from WordPress-Blog’ is closed to new replies.