mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-04 12:22:24 +08:00
https://wordpress.stackexchange.com/questions/108707/can-yoast-seo-fields-be-removed-from-custom-post-type https://docs.woocommerce.com/document/installed-taxonomies-post-types/
4 lines
166 B
Text
4 lines
166 B
Text
function remove_yoast_metabox_product(){
|
|
remove_meta_box('wpseo_meta', 'product', 'normal');
|
|
}
|
|
add_action( 'add_meta_boxes', 'remove_yoast_metabox_product',11 );
|