|
在后台编辑文章时,回车几次添加空行。发表后再看,却没有空行。
在网上搜索了方法。
在模板的single.php文件,
查找到 <?php the_content(); ?>
修改成<div class=”post-content”>
<?php the_content(); ?>
</div>
但是我用的contango模板,没找到<?php the_content(); ?>,该怎么处理,请大虾指点
贴出single.php如下
<?php get_header(); ?>
<div id="content" class="site-content clearfix">
<?php get_template_part( 'loop-meta' ); ?>
<div class="container_16 clearfix">
<div class="grid_11">
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php contango_breadcrumbs(); ?>
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', 'single' ); ?>
<?php endwhile; ?>
<?php else : ?>
<?php get_template_part( 'loop-error' ); ?>
<?php endif; ?>
<?php contango_loop_nav_singular_post(); ?>
</main><!-- #main -->
</div><!-- #primary -->
</div> <!-- end .grid_11 -->
<?php get_sidebar(); ?>
</div> <!-- end .container_16 -->
</div><!-- #content -->
<?php get_footer(); ?>
|
|