我目前正在尝试从Wordpress中的自定义帖子类型返回一个随机帖子。目前,它返回的是该自定义帖子类型中发布的最后一篇帖子。我目前正在使用此代码来获取帖子:
<?php $posts = get_posts(array('posts_per_page' => 1, 'order_by' => 'rand', 'order' => 'ASC', 'post_type' => 'call_to_action')); if( $posts ): ?>
<?php foreach ( $posts as $post ) : setup_postdata( $post ); ?>
// Some code
<?php endforeach; ?>
<?php wp_reset_postdata(); ?>
<?php endif; ?>
答案 0 :(得分:2)
将'order_by' => 'rand'
更改为'orderby' => 'rand'