mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
11 lines
448 B
Text
11 lines
448 B
Text
add_action( 'do_meta_boxes', 'ast_remove_plugin_metaboxes' );
|
|
|
|
/**
|
|
* Remove Astra settings meta box for users that are not administrators
|
|
*/
|
|
function ast_remove_plugin_metaboxes(){
|
|
if ( ! current_user_can( 'administrator' ) ) {
|
|
remove_meta_box( 'astra_settings_meta_box', 'page', 'side' ); // Remove Astra Settings in Pages
|
|
remove_meta_box( 'astra_settings_meta_box', 'post', 'side' ); // Remove Astra Settings in Posts
|
|
}
|
|
}
|