php WP_QUERY示例
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php WP_QUERY示例相关的知识,希望对你有一定的参考价值。
https://www.proteusthemes.com/blog/displaying-custom-post-types-templates-querying/
https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters
<?php
$args = array(
'post_type' => 'history',
'post_status' => 'publish',
'order' => 'ASC'
);
$history = new WP_Query( $args );
if( $history->have_posts() ) : ?>
<div class="history_slider">
<?php
while( $history->have_posts() ) :
$history->the_post();
?>
<div class="history_container">
<div class="year"><?php the_field('year') ; ?></div>
<div class="range"><?php the_title() ; ?></div>
<div class="name"><?php the_field('name') ; ?></div>
<div class="title"><?php the_field('title') ; ?></div>
<div class="topics"><?php the_field('topics') ; ?></div>
<div class="chairs"><?php the_field('chairs') ; ?></div>
</div>
<?php
endwhile;
wp_reset_postdata(); ?>
</div>
<?php
else :
esc_html_e( 'History N/A', 'text-domain' );
endif;
?>
以上是关于php WP_QUERY示例的主要内容,如果未能解决你的问题,请参考以下文章
php 切换到Blog和WP_Query示例
php 您可能希望扩展WP_Query类的方式和原因的实际示例。
php Wordpress Bootstrap 4.1分页(使用自定义WP_Query()和全局$ wp_query支持)
php Wordpress Bootstrap 4.1分页(使用自定义WP_Query()和全局$ wp_query支持)
php WP_query
php 优化WP_QUERY