根据食品法典(http://codex.wordpress.org/Function_Reference/term_exists ), term\\u exists返回一些混合结果,但不为NULL。在我的情况下,我得到空值,我做错了什么?
在此特定示例中,类别下不存在“视频”一词。它不应该返回false或0吗?为什么为空?
$term_exists_results = term_exists($term, \'category\');
echo "<p>term_exists(\'{$term}\', \'category\')?";
echo "<blockquote>";
var_dump ($term_exists_results);
echo "</blockquote>";
/*
outputs...
Taxonomy: [category Term: [Videos]
term_exists(\'Videos\', \'category\')?
NULL
*/