wordpress the7主题的文章里面如何在文章内容上添加标题title

wordpress the7主题的文章里面如何在文章内容上添加标题title
找到主题中的?content-single.php 文件
在 <article id=”post-<?php the_id(); ?>” <?php post_class( $post_classes ); ?>>
下添加
<?php echo ‘<div class=”news-title”>’;
the_title();
echo ‘</div>’;
?>
关于本站