NEEDI在woocommerce中有一个属性列表,特别是WRITERS:WRITERS name列表。我想在自定义帖子类型writers的帖子中转换writers名称。商业条款约为2000年。我想自动插入。
IDEAUse wp\\u insert\\u post并创建一个循环,以插入分类法术语的名称作为帖子的标题。有可能吗?
function convert_attribute_post_type () {
$terms = get_terms("pa_writers");
foreach ( $terms as $term ) :
wp_insert_post(array(\'post_title\'=>\'$term->name\', \'post_type\'=>\'writers\', \'post_content\'=>\'text\'));
endforeach;
}
有可能吗?