我正在尝试为自定义帖子类型编写条件查询。不过,我需要它与特定帖子相关。例如,我有适用于所有项目的当前代码:
<?php if ('project' == get_post_type() ) { ?>
// Get content
<?php } ?>
但是,我需要能够指定一个 ID 为 75 的项目。这可能吗?
任何帮助是极大的赞赏。
干杯,
您可以将 $post 全局变量用于特定的自定义帖子。
<?php if($post->post_type == 'project' && $post->ID == '75') : ?>
//Get Content
<?php endif; ?>
if($post->post_type == 'type your post type here' ) :
//Get Content
万一;
这是工作...
您可以使用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 } ?>