我正在尝试为自定义帖子类型编写条件查询。我需要它与特定的帖子相关。例如,我有适用于所有项目的当前代码:
<?php if ('project' == get_post_type() ) { ?>
// Get content
<?php } ?>
但是,我需要能够指定ID为75的特定项目。这可能吗?
非常感谢任何帮助。
干杯,
答案 0 :(得分:2)
您可以将$ post全局变量用于特定的自定义帖子。
<?php if($post->post_type == 'project' && $post->ID == '75') : ?>
//Get Content
<?php endif; ?>
答案 1 :(得分:1)
if($post->post_type == 'type your post type here' ) :
//Get Content
ENDIF;
这是有效的......
答案 2 :(得分:0)
您可以使用LOOP中的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 } ?>