by Garth | Nov 23, 2022 | Wordpress, Xampp
by Garth | Jul 7, 2022 | Wordpress
https://scalewp.io/...
by Garth | Mar 14, 2021 | Wordpress
// Limit media library access add_filter( ‘ajax_query_attachments_args’, ‘wpb_show_current_user_attachments’ ); function wpb_show_current_user_attachments( $query ) { $user_id = get_current_user_id(); if ( $user_id &&...
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’ );