我已注册自定义帖子类型名称为“show”function.php,我还创造了single-show.php当我遵循帖子的永久链接时,我希望在其中显示自定义帖子的文件,这只针对“显示”自定义帖子类型,但它不是重定向到单个显示的帖子。php。。请任何人指导我怎么做。。
我正在显示single-show.php
<?php
if($post_type == \'Show\') {
// Start the Loop.
while ( have_posts() ) : the_post();
echo \'<h1>\'.get_the_title().\'</h1>\';
endwhile;
}
?>
请告诉我我做错了什么。。?
最合适的回答,由SO网友:dhirenpatel22 整理而成
只需将默认WordPress循环用于单个页面的帖子类型。。。
<?php
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
echo \'<h1>\'.get_the_title().\'</h1>\';
// Post Content here
} // end while
} else{
esc_html_e( \'Sorry, no posts found.\' );
}
?>