我必须显示一个链接到标记的按钮,但如果标记不存在,我必须隐藏按钮以避免断开链接。
如何检查wp数据库中是否存在特定标记?
This is what I have so far:
$tag_path = \'/tag/testing/\';
if( !$page = get_page_by_path( $tag_path ) ){
//hide button link
} else {
//show button link
}
最合适的回答,由SO网友:Abdul Awal Uzzal 整理而成
我想你在找term_exists
作用
示例代码:
<?php
$term = term_exists(\'tag1\', \'post_tag\');
if ($term !== 0 && $term !== null) {
echo "\'tag1\' post_tag exists!";
} else {
echo "\'tag1\' post_tag does not exist!";
}
?>