-
Home
-
پارسی دیت – Parsi Date
- Tips
How to Hide the "WP Parsi" Admin Menu
function plt_hide_wp_parsidate_menus() {
//Hide the "WP Parsi" menu.
remove_menu_page('wp-parsidate');
}
add_action('admin_menu', 'plt_hide_wp_parsidate_menus', 2147483647);
Where do I put this code?
How to Hide the "WP Parsi" Dashboard Widget
function plt_hide_wp_parsidate_dashboard_widgets() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Remove the "WP Parsi" widget.
remove_meta_box('wpp_dashboard_primary', 'dashboard', 'normal');
}
add_action('wp_dashboard_setup', 'plt_hide_wp_parsidate_dashboard_widgets', 20);