对于我的网站,我使用的是静态主页主页(template front page.php)和贴子页新闻(template home.php)
我需要显示该页面新闻(temp.home.php)上的所有帖子标题和例外,但也需要显示该页面新闻本身的原始标题和内容。
下面的while语句代码显示了所有帖子,这很好,但顶部the_title
还显示第一篇文章的标题,而不是新闻页面本身的标题。
如何实现我所需要的?
<?php get_header(); ?>
<?php
the_title();
the_content();
?>
<?php if(have_posts()) while(have_posts()) : the_post(); ?>
<?php
the_title();
?>
<?php
the_content();
?>
<?php
endwhile;
?>
<?php get_footer(); ?>