我只是在寻找这样的事情:
<?php
$json = get_post_meta($post->ID, "json", $single = true);
$book = json_decode($json);
$genre = $book->genres
$cat_ids = array($genres);
$term_taxonomy_ids = wp_set_object_terms(get_the_ID(), $cat_ids, 'category' );
为什么它不起作用? 我该如何运行这个脚本:
$cat_ids = array($genres);
感谢您的回答