Advertisement
fahimmurshed

Remove Astra Meta Panel (Post/Page)

Apr 1st, 2020 (edited)
458
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.55 KB | None | 0 0
  1. // Remove Astra Meta Settings completely! If you want hide for specific user role, follow this https://share.getcloudapp.com/nOu8e7JE.
  2. // fahimm.com
  3. add_action( 'admin_init', 'delete_postmeta_rows_for_astra_settings' );
  4. function delete_postmeta_rows_for_astra_settings() {
  5.     // To remove metabox (it will prevent you to update/add new data in postmeta in future)
  6.     $instance = Astra_Meta_Boxes::get_instance();
  7.     remove_action( 'load-post.php', array( $instance, 'init_metabox' ) );
  8.     remove_action( 'load-post-new.php', array( $instance, 'init_metabox' ) );
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement