我的代码中有这个将0或1转换为成功或不成功。
$regstatus = array();
$regstatus_compare = array(
"0" => "Not Registered",
"1" => "Registered"
);
foreach( $regstatus_compare as $key=>$value ):
if( stripos( $row["registration_status"] , $key ) !== false ):
$regstatus[] = $value;
endif;
endforeach;
然后这是插入它的代码。
$this->set_taxonomy( $post_id , "reg_status" , $regstatus );
$this->set_taxonomy( $post_id , "response_successful" , $responsesuccess );
这是set_taxonomy函数
function set_taxonomy( $post_id, $taxonomy, $post_terms ){
wp_set_object_terms( $post_id , $post_terms , $taxonomy );
}
但我仍然在网站上插入0或1。 我在这做错了什么? 如果它有帮助,这是一个Wordpress网站。