在创建新产品时,如何强制用户首先选择类别产品,然后再继续使用编辑器?
我找到了一个成功的解决方案,但它适用于帖子而不是产品。 https://wordpress.stackexchange.com/questions/14403/force-category-choice-before-creating-new-post
答案 0 :(得分:1)
如果您更改以下代码,似乎您的引用代码将适用于您:
$post_type = 'post';
if ( isset( $_REQUEST['post_type'] ) ) {
$post_type = $_REQUEST['post_type'];
}
// Only do this for posts
if ( 'post' != $post_type ) {
return;
}
到
$post_type = 'product';
if ( isset( $_REQUEST['post_type'] ) ) {
$post_type = $_REQUEST['post_type'];
}
// Only do this for posts
if ( 'product' != $post_type ) {
return;
}
希望这对你有用。