如果我这样使用wp\\U insert\\U post:
wp_insert_post(array(\'post_title\' => \'some title\', \'post_status\' => \'draft\', \'meta_input\' => array( \'_pf_mainphone\' => $pro_phone ),\'tax_input\' => array( \'places_taxonomy\' => $_POST["npf_newpro_places"], \'protags\' => $_POST["npf_newpro_tags"],)));
让我们假设
_pf_mainphone
不是真正的自定义字段(在我的安装/设置中没有这样的自定义字段…)。
The Question is 它会向数据库写入一些内容,还是会忽略这部分代码?
The Reason 我的问题是(虽然我认为回答这个问题并没有必要):
我想编写一个函数,该函数将以长格式接受每个字段,并将其值设置为与字段名称属性同名的自定义字段的值,并且有2个(共34个)字段不作为自定义字段存在(我使用另一个函数用于其他用途…)。