HEX
Server: nginx/1.22.0
System: Linux iZ2ze74yt1daio6akmwwd9Z 4.18.0-348.7.1.el8_5.x86_64 #1 SMP Wed Dec 22 13:25:12 UTC 2021 x86_64
User: www (1000)
PHP: 7.4.30
Disabled: passthru,exec,system,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
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>&gt;</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(); ?>