File: /www/wwwroot/doba123.com/wp-content/themes/duba2/archive-news.php
<?php
/*
Template Name: 新闻列表
Author: 畔游科技
Version: 1.0
*/
get_header(); ?>
<div class="pg-banner">
<picture>
<img src="<?php echo of_get_option( 'banner_news'); ?>">
</picture>
</div>
<!-- ./banner -->
<div class="container-width">
<div class="cate-path">
<img src="<?php bloginfo('template_url'); ?>/images/path-ico.jpg"> <em>您当前的位置:</em><a href="/">首页</a> <b>></b> <span><?php single_cat_title(); ?></span>
</div>
</div>
<!-- ./path -->
<!---------------- main ---------------->
<div class="container-width clearfix">
<?php if (is_category(array('1','2','3','4','5'))) { ?>
<style>
.pg-news-box-pic img {height: 220px;}
</style>
<div class="pg-news-title">
<ul class="clearfix casesTit">
<?php wp_list_cats('sort_column=id&optioncount=0&hierarchical=1&hide_empty=0&child_of=1'); ?>
</ul>
</div>
<?php } ?>
<div class="pg-news">
<ul class="clearfix">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<li>
<a href="<?php the_permalink(); ?>">
<div class="pg-news-box">
<div class="pg-news-box-pic">
<?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'); ?>/images/news-p1.jpg" alt="<?php the_title(); ?>">
<?php } ?>
</div>
<div class=" clearfix">
<!-- ./ -->
<div class="pg-news-box-content">
<h3><?php the_title(); ?></h3>
<p><?php echo mb_strimwidth(strip_tags(apply_filters('the_content', $post->post_content)), 0, 200, '……'); ?></p>
</div>
<!-- ./ -->
</div>
</div>
</a>
</li>
<?php endwhile; endif; ?>
</ul>
</div>
<!-- ./ -->
<div class="pg-code">
<ul><?php get_pagenavi(); ?></ul>
</div>
<!-- ./ -->
</div>
<!---------------- main ---------------->
<?php get_footer(); ?>