3

我正在尝试为自定义帖子类型编写条件查询。不过,我需要它与特定帖子相关。例如,我有适用于所有项目的当前代码:

<?php if ('project' == get_post_type() ) {  ?> 
// Get content 
<?php } ?>

但是,我需要能够指定一个 ID 为 75 的项目。这可能吗?

任何帮助是极大的赞赏。

干杯,

4

3 回答 3

2

您可以将 $post 全局变量用于特定的自定义帖子。

<?php if($post->post_type == 'project' && $post->ID == '75') : ?> //Get Content <?php endif; ?>

于 2012-04-15T01:06:11.167 回答
1
if($post->post_type == 'type your post type here' ) : 
  //Get Content

万一;

这是工作...

于 2014-08-27T08:44:44.867 回答
0

您可以使用get_the_ID()循环内的功能:http:
//codex.wordpress.org/Function_Reference/get_the_ID

<?php if ('project' == get_post_type() && get_the_ID() == 75) {  ?> 
// Get content 
<?php } ?>
于 2012-04-14T06:52:19.230 回答