by Garth | Mar 14, 2021 | PHP, Wordpress
function TRIM_ADMIN_MENU() { global $current_user; if(!current_user_can(‘administrator’)) { remove_menu_page( ‘tools.php’ ); // No tools for <= editors remove_menu_page( ‘activity_log_page’ ); // Activity log } }...
by Garth | Mar 14, 2021 | PHP, Wordpress
if( !function_exists( ‘plugin_prefix_unregister_post_type’ ) ) { function plugin_prefix_unregister_post_type(){ unregister_post_type( ‘project’ ); } }...
by Garth | Mar 14, 2021 | PHP, Wordpress
function remove_default_post_type() { remove_menu_page( ‘edit.php’ ); } add_action( ‘admin_menu’, ‘remove_default_post_type’ );
by Garth | Mar 2, 2021 | PHP, Wordpress
function create_posttype() { register_post_type( ‘wpll_product’, array( ‘labels’ => array( ‘name’ => __( ‘Videos’ ), ‘singular_name’ => __( ‘Video’ ) ), ‘public’ => true,...
by Garth | May 22, 2019 | PHP, Wordpress
function my_custom_js() { echo ‘<script src=”https://wchat.freshchat.com/js/widget.js”></script>’; } // Add hook for admin <head></head> add_action( ‘admin_head’, ‘my_custom_js’ ); // Add hook for front-end...
by Garth | Mar 27, 2019 | PHP, Wordpress
function remove_menus(){ remove_menu_page( ‘index.php’ ); //Dashboard remove_menu_page( ‘edit.php’ ); //Posts remove_menu_page( ‘upload.php’ ); //Media remove_menu_page( ‘edit.php?post_type=page’ ); //Pages...