从页面模板中隐藏特定帖子 时间:2015-10-20 作者:James 我试图从页面模板中隐藏特定帖子?有没有人有这样的经验,宁愿不使用插件。正在考虑使用wp\\u post ID,但我不确定如何进行。 2 个回复 最合适的回答,由SO网友:James 整理而成 我认为使用\'post__not_in\' => array(ID), 更符合我的想法: $args=array( \'cat\' => 12, // Make the free-slots cat id \'post__not_in\' => array(111) \'showposts\' => $show_posts_number, ); SO网友:luukvhoudt 在顶部the loop 在您的page.php 你的主题。添加以下条件:if (get_the_ID()==$my_id) { exit; } 文章导航