获取永久链接永远不会返回空值 时间:2017-06-02 作者:Mouner Mostafa 你好,我正在检查默认帖子类型页面中是否有自定义帖子类型的url,所以我使用了if(get_the_permalink($customID)){ echo \'true\'; }else{ echo \'false\'; } 即使$customID不存在,它也总是回显为真的get_the_permalink(); 函数,我知道get_post_status() 但我需要用get_the_permalink 1 个回复 最合适的回答,由SO网友:Andrew Dinmore 整理而成 你只需要检查一下$customID 首先设置。E、 g。if ($customID && get_permalink ($customID)) { echo \'true\'; } else { echo \'false\'; } 结束 文章导航