File: /www/wwwroot/wood-lk.cn/wp-content/themes/mlk/archive-news.php
<?php
/*
Template Name: 树屋鉴赏
Author: 畔游科技
Version: 1.0
*/
get_header(); ?>
<div class="container">
<div class="flex pages-wrap">
<div class="pages-left">
<div class="aside-nav">
<div class="flex aside-nav-title">
<h3>树屋鉴赏</h3>
</div>
<!-- ./ -->
<div class="aside-nav-current">
<ul>
<li class="on"><a href="/news">树屋案例</a></li>
</ul>
</div>
<!-- ./ -->
</div>
<!-- ./nav -->
<?php get_sidebar(); ?>
<!-- ./ -->
</div>
<!-- ./left -->
<div class="pages-right">
<div class="page-path">
当前位置:<a href="<?php echo esc_url( home_url( '/' ) ); ?>">首页</a> <b></b> <span>树屋案例</span>
</div>
<!-- ./ -->
<div class="pages-curcatagory">
<h3><i></i>树屋案例 </h3>
</div>
<!-- ./ -->
<div class="case">
<ul>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<li class="flex">
<a href="<?php the_permalink(); ?>" class="case-poster" title="<?php the_title(); ?>">
<?php if ( has_post_thumbnail() ) { ?>
<img src="<?php echo wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'large')[0]; ?>" alt="<?php the_title(); ?>">
<?php } else {?>
<img src="<?php bloginfo('template_url'); ?>/assets/images/case/p1.png" alt="<?php the_title(); ?>">
<?php } ?>
</a>
<!-- ./ -->
<div class="case-content">
<h3><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>
<span><?php the_time('Y.m.d'); ?></span>
<p><?php echo mb_strimwidth(strip_tags(apply_filters('the_content', $post->post_content)), 0, 80, '...'); ?></p>
</div>
</li>
<?php endwhile; endif; ?>
</ul>
</div>
<!-- ./ -->
<?php if (have_posts()) { ?>
<?php MBThemes_paging();?>
<?php } ?>
<!-- ./ -->
</div>
<!-- ./right -->
</div>
</div>
<?php get_footer(); ?>