Wordpress循环-WPu查询
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress循环-WPu查询相关的知识,希望对你有一定的参考价值。
Wordpress Loop - WP_Query
<!-- QUERY PERSONALIZADA --> <?php // The Query $the_query = new WP_Query( $args ); // The Loop while ( $the_query->have_posts() ) : $the_query->the_post(); setup_postdata($post); echo '<li>'; the_title(); echo '</li>'; endwhile; // Reset Post Data wp_reset_postdata(); ?>
以上是关于Wordpress循环-WPu查询的主要内容,如果未能解决你的问题,请参考以下文章