Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Remove Astra Meta Settings completely! If you want hide for specific user role, follow this https://share.getcloudapp.com/nOu8e7JE.
- // fahimm.com
- add_action( 'admin_init', 'delete_postmeta_rows_for_astra_settings' );
- function delete_postmeta_rows_for_astra_settings() {
- // To remove metabox (it will prevent you to update/add new data in postmeta in future)
- $instance = Astra_Meta_Boxes::get_instance();
- remove_action( 'load-post.php', array( $instance, 'init_metabox' ) );
- remove_action( 'load-post-new.php', array( $instance, 'init_metabox' ) );
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement