Landing › Forums › Somentra (Impeka) › Feedback › Rename Portfolio › Reply To: Rename Portfolio
August 9, 2021 at 3:27 pm
#432
PS: You can always check the menu items array inside the wp admin dashboard for further modification. Just paste this inside your functions.php temporarily. It only will affect your backend.
Having this simple overview makes it quite easy to make required changes to specific areas.
if (!function_exists('debug_admin_menus')):
function debug_admin_menus() {
global $submenu, $menu, $pagenow;
if ( current_user_can('manage_options') ) { // enable for admin role
if( $pagenow == 'index.php' ) { // puts the menu array list inside the WP admin dashboard
echo '<pre>'; print_r( $menu ); echo '</pre>'; // main menu items
echo '<pre>'; print_r( $submenu ); echo '</pre>'; // submenu items
}
}
}
add_action( 'admin_notices', 'debug_admin_menus' );
endif;

