我想显示当前帖子。我将在自定义帖子类型的单个模板中使用此查询。单击自定义帖子类型时,仅显示帖子。
如何编写此查询?
在wordpress开发人员页面中,$post作为查询参数存在。但是没有如何使用$post arg。
我写下:$post=get\\u post();但它不起作用。如何将$post作为查询数组中的参数写入?
最合适的回答,由SO网友:Jacob Peattie 整理而成
您不应该编写任何查询。WordPress为您做这件事。你single-{post type}.php
模板应仅包含standard loop:
<?php
if ( have_posts() ) :
while ( have_posts() ) : the_post();
// Display post content
endwhile;
endif;
?>