mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
6 lines
260 B
Text
6 lines
260 B
Text
function wp_remove_post_custom_fields_metabox() {
|
|
foreach ( get_post_types( '', 'names' ) as $post_type ) {
|
|
remove_meta_box( 'postcustom' , $post_type , 'normal' );
|
|
}
|
|
}
|
|
add_action( 'admin_menu' , 'wp_remove_post_custom_fields_metabox' );
|