WordPress 301重定向

只显示文章内容

打了主题下的single.php文件

<?php while (have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile;  ?>

用上面的代码把文件里的所有内容给替换了

显示文章标题以及内容,操作方法同上,代码如下:

<?php while (have_posts()) : the_post(); ?>
<h4 class="article-title" ><center><?php the_title(); ?></center></h4>
<?php the_content(); ?>
<?php endwhile;  ?>
原文地址:https://www.cnblogs.com/yangcong/p/3673709.html