Answers for "wordpress disable posts"

PHP
0

wordpress disable posts

// add  this hook into function.php  file it will disable the post menu from 
//Left Sidebar in wp-admin Dashboard

function remove_posts_menu() {
    remove_menu_page('edit.php');
}
add_action('admin_menu', 'remove_posts_menu');
Posted by: Guest on August-06-2021

Browse Popular Code Answers by Language