content.php文件修改-使其目录只显示摘要信息,不显示所有内容
<?php $elitepress_current_options = wp_parse_args( get_option( 'elitepress_lite_options', array() ), elitepress_theme_data_setup() ); ?> <?php if(is_page_template('blog-left-sidebar.php')) {?> <article id="post-<?php the_ID(); ?>" <?php post_class('blog-right'); ?>> <?php } elseif(is_page_template('blog-full-width.php')) { ?> <article id="post-<?php the_ID(); ?>" <?php post_class(''); ?>> <?php } else { ?> <article id="post-<?php the_ID(); ?>" <?php post_class('blog-left'); ?>> <?php } if(has_post_thumbnail()){ $defalt_arg =array('class' => "img-responsive"); ?> <figure class="post-thumbnail"> <?php if(is_active_sidebar('sidebar_primary')){ the_post_thumbnail('', $defalt_arg); } ?> <div class="entry-date"><span><?php echo esc_html(get_the_date()); ?></span></div> </figure><?php } ?> <header class="entry-header"> <h1 class="entry-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1> <!-- <div class="blog-seprator"></div> --> </header> <!-- 不显示作者信息 < ? php elitepress_post_meta_content(); ? > --> <div class="entry-content"> <!-- ? php the_content( __('Read More','elitepress' ) ); ? > //不显示文章内容 --> <!--使用这行 只显示摘要信息,截取200个文字 --> <?php echo mb_strimwidth(strip_tags(apply_filters('the_content', $post->post_content)), 0,150,"……"); ?> </div> <?php wp_link_pages( array( 'before' => '<div class="page-links">' . esc_html__('Page', 'elitepress' ), 'after' => '</div>' ) ); ?> </article>
额外CSS解决边栏分类不缩进
.widget .children li { padding-left:30px; }
10