为了检查是否存在帖子ID,我这样做:
if ('publish' == get_post_status ($post_id)) {
// do something
}
但我怎样才能检查id是否与php中的不同:
if ($id != $var) {
//do stuff
}
我在做什么:
$post_id = get_the_ID();
if ($post_id != 835) {
//do stuff
}
这是对的吗?
答案 0 :(得分:1)
使用以下任何一种方法都适用于您。如果当前帖子ID 不是 8,则打印出“Not post 8”。如果您想要打印其他内容,可以添加else语句。
<?php
$post_id = get_the_ID();
if ($post_id != "8") {
echo "Not post 8";
}
?>
<?php
$post_id = get_the_ID();
if ($post_id != 8) {
echo "Not post 8";
}
?>