【wordpress输出额外的html代码】我正在WordPress中构建主题, 我是新手, 并且正在输出图像HTML, 请帮助我解决此问题, 谢谢。
<
?php$args = array( 'numberposts' =>
4, 'order'=>
'ASC', 'orderby' =>
'title', 'category' =>
'5' );
$postslist = get_posts( $args );
foreach ($postslist as $post) :setup_postdata($post);
?>
<
li>
<
div class="timeline-image">
<
a href="http://www.srcmini.com/<
?php the_permalink();
?>">
<
img class="rounded-circle img-fluid" src="http://www.srcmini.com/<
?php echo the_post_thumbnail();
?>">
<
/a>
<
/div>
<
div class="timeline-panel">
<
div class="timeline-heading">
<
h4 class="subheading text-left">
<
?php the_title();
?>
<
/h4>
<
/div>
<
div class="timeline-body">
<
p class="text-muted text-justify">
<
?php the_excerpt();
?>
&
nbsp;
<
a href="http://www.srcmini.com/readmore.html">
Read More >
>
<
/a>
<
/p>
<
/div>
<
/div>
<
/li>
<
?php endforeach;
?>
#1你应该这样循环浏览帖子, 而不要使用foreach:
<
?php
$args = array(
'post_type' =>
'post', 'posts_per_page' =>
4, 'orderby' =>
'title', 'order' =>
'ASC', 'category__in' =>
5
);
$loop = new wp_query( $args );
while( $loop->
have_rows() ) : $loop->
the_row();
?>
Your article content…
<
h4 class="subheading text-left">
<
?php the_title();
?>
<
/h4>
<
?php endif;
?>
如果你需要循环浏览其他自定义帖子类型, 请使用本指南。
推荐阅读
- WordPress的页面slug与媒体库项冲突
- WordPress(在子主题中覆盖父主题类函数)
- WordPress.org主题提交
- 阿里云镜像OpenSUSE全新安装并更改阿里OpenSUSE镜像源?
- wireshark启动报错 由于找不到msvcp140.dll无法继续执行代码
- 音响DSP|ENC降噪DSP|USB麦克风芯片|USB耳机芯片|TYPE-C麦克风芯片|192K/24位耳机芯片
- kubernetes-nginx+php访问集群外mysql部署wordpress
- 阿里云镜像使用阿里云openssh镜像安装配置SSH服务
- #yyds干货盘点#--Linux下iptables的常用知识点