Skip to content

Instantly share code, notes, and snippets.

@manhleo93
Last active December 18, 2019 16:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save manhleo93/86ffff39d63d8483ad36a918487f2cf2 to your computer and use it in GitHub Desktop.
Save manhleo93/86ffff39d63d8483ad36a918487f2cf2 to your computer and use it in GitHub Desktop.
//* Xóa menu trong quảng trị viên
function remove_admin_menus() {
remove_menu_page( 'joomdev-wpc-settings-menu-page' ); // Xóa menu Joomdev
remove_menu_page( 'accesstrade_coupon' ); // Xóa menu mã giảm giá
remove_menu_page( 'optimisationio-dashboard' ); // Xóa menu WP Disable
remove_menu_page( 'kk-star-ratings' ); // Xóa menu Kk Star Rating
remove_menu_page( 'wpsm_table_maker' ); // Xóa menu Table
}
add_action( 'admin_menu', 'remove_admin_menus' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment