Export data related to job.
Hello Support,
We are using the below code to export job category, Job Type, Job Salary etc.. But the code is not working, can you pls help me fix this issue.
//Post terms
$_terms = wp_get_post_terms($post->ID, "job_cat");
foreach ($_terms as $_term) {
$items[$index]["terms"][] = json_encode($_term);
}
$_terms = wp_get_post_terms($post->ID, "job_type");
foreach ($_terms as $_term) {
$items[$index]["terms"][] = json_encode($_term);
}
$_terms = wp_get_post_terms($post->ID, "job_salary");
foreach ($_terms as $_term) {
$items[$index]["terms"][] = json_encode($_term);
}
$_terms = wp_get_post_terms($post->ID, "job_tag");
foreach ($_terms as $_term) {
$items[$index]["terms"][] = json_encode($_term);
}
We get below data #
"terms":["{\"invalid_taxonomy\":[\"Invalid taxonomy.\"]}","[]","{\"invalid_taxonomy\":[\"Invalid taxonomy.\"]}","[]","{\"invalid_taxonomy\":[\"Invalid taxonomy.\"]}","[]","{\"invalid_taxonomy\":[\"Invalid taxonomy.\"]}","[]"]}]