php wp查询
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php wp查询相关的知识,希望对你有一定的参考价值。
<?php
//https://codex.wordpress.org/Class_Reference/WP_Query
$args = array (
'meta_query' => array(array('key' => 'show-ticker','value' => 'بله')),
'posts_per_page' => $this->redux['ticker-number-show'],
'order' => 'DESC',
'orderby' => 'id'
);
// The Query
$query = new WP_Query( $args );
$count = $query->post_count;
$i = 1;
while ($query->have_posts()):
$query->the_post();
endwhile;
wp_reset_postdata();
以上是关于php wp查询的主要内容,如果未能解决你的问题,请参考以下文章
php WP查询从搜索中排除
php wp查询
php wp自定义pst查询
php WP:查询$ args
php WP:查询$ args
php WP查询循环