http://qieban.cn
做完设计,找切版网
QQ:6135833
微信:dingxiangming82
2022年08月27日
本文就“wordpress调用指定类型post_type的文章”展开讨论,作者切版网,发布于2022年08月27日 全文共1823个字,预计阅读时长6分4秒。
wordpress很强大,可以添加多种post_type文章类型,假如我们要调用product产品模型的文章要如何操作呢?随ytkah一起来看看吧。我们用’post_type’ => ‘product’进行指定,代码如下
<?php
$args
=
array
(
'post_type'
=>
'product'
,
//自定义文章类型名称
'showposts'
=> 5,
//输出的文章数量,这个可以是缺省值,不用设置
'orderby'
=>
'rand'
,
//按随机调用,如果不要随机可以把这行删除
);
$my_query
=
new
WP_Query(
$args
);
if
(
$my_query
->have_posts() ) {
while
(
$my_query
->have_posts()) :
$my_query
->the_post();?>
<div
class
=
"item col-xs-12 col-sm-4 col-md-3"
>
<div
class
=
"box"
>
<img src=
"<?php the_field('pimg01'); ?>"
alt=
"<?php the_title(); ?>"
>
<div
class
=
"text"
>
<b><?php the_title(); ?></b>
<?php
if
(get_field(
'model'
)): ?>
<p><?php the_field(
'model'
); ?></p>
<?php
endif
; ?>
<?php
if
(get_field(
'be_applicable'
)): ?>
<p><?php the_field(
'be_applicable'
); ?></p>
<?php
endif
; ?>
<a href=
"<?php the_permalink(); ?>"
class
=
"common-btn"
>more</a>
</div>
</div>
</div>
<?php
endwhile
; wp_reset_query();
//重置query查询
} ?>
'orderby'
=>
'date'
,
//按发布日期排序
'orderby'
=>
'modified'
,
//按修改时间排序
'orderby'
=>
'ID'
,
//按文章ID排序
'orderby'
=>
'comment_count'
,
//按评论最多排序
'orderby'
=>
'title'
,
//按标题排序
'orderby'
=>
'rand'
,
//随机排序
'order'
=>
'desc'
,
// 降序(递减,由大到小)
文章为原创或者来自于互联网,转载请注明来源,如果文章有侵权请联系,我们会及时删除。
发布时间:2022年08月27日 标签:echarts
UEditor是国内比较主流的编辑插件,是百度出品,不得不说百度虽然也做过很多产品最后放弃,不过ueditor […]
发布时间:2022年08月27日
我们在vue中有时候为给标签加一些特有的属性, 当我们在标签上触发了事件之后, 就可以在 event 对象上面 […]