mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
6 lines
307 B
Text
6 lines
307 B
Text
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
|
|
}
|
|
}
|