PHP Wordpress中的简单自定义查询

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP Wordpress中的简单自定义查询相关的知识,希望对你有一定的参考价值。

<?php $recent = new WP_Query("showposts=1"); while($recent->have_posts()) : $recent->the_post();?>
<h3><a href="<?php the_permalink() ?>"><?php the_time('F jS, Y') ?><br />
<span class="frontLeftTitle"><?php the_title(); ?></span></a></h3>
<?php endwhile; ?>

以上是关于PHP Wordpress中的简单自定义查询的主要内容,如果未能解决你的问题,请参考以下文章

PHP 使用循环外的自定义字段自定义Wordpress查询

PHP wordpress分页自定义查询

PHP Wordpress:查询自定义分类

PHP Wordpress自定义查询

PHP WordPress查询某些自定义字段值的帖子

PHP Wordpress - 自定义循环SQL查询(和热门帖子示例)