-
Home
-
Parsi Date
- Tips
How to Hide the "Parsi Settings" Admin Menu
function plt_hide_wp_parsidate_menus() {
//Hide the "Parsi Settings" menu.
remove_menu_page('wp-parsi-settings');
}
add_action('admin_menu', 'plt_hide_wp_parsidate_menus', 12);
Where do I put this code?
How to Hide the "WP Parsidate" Dashboard Widget
function plt_hide_wp_parsidate_dashboard_widgets() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Remove the "WP Parsidate" widget.
remove_meta_box('wpp_dashboard_primary', 'dashboard', 'normal');
}
add_action('wp_dashboard_setup', 'plt_hide_wp_parsidate_dashboard_widgets', 20);