How to disable posts and use pages only

You can simply hide the posts menu by adding the following to your functions.php file:

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

Leave a Comment