如何让wordpress显示所有分类下所有文章列
发布网友
发布时间:2022-04-23 07:59
我来回答
共1个回答
热心网友
时间:2022-04-09 04:15
显示WordPress全部文章示例代码如下:
$args
=
array(
'ignore_sticky_posts'
=>
1,//忽略sticky_posts,即不
置顶
);
$query
=
new
WP_Query(
$args
);
if
($query->have_posts())
:
while
($query->have_posts())
:
$query->the_post();
?>
?php
the_title();
?
?php
endwhile;endif;
?
在循环中你可以使用WordPress的调用函数都是可以的,根据需要修改即可。