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>’;
?>
网站建设、小程序开发
0592-5281051
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>’;
?>