by Garth | Jun 12, 2024 | Wordpress
First off. What is Monarch.It’s a premium social sharing plugin for WordPress from Elegant Themes.Monarch Plugin Documentation | Elegant Themes Documentation Updating the twitter logo to the new X from Mr Elon Musk.You first need to upload a new logo to your WordPress...
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’ ); } }...