第一个问题对于了解wordpress的人:资源/系统负载明智是直接查询mysql并在那里订购结果更好吗?或者使用wordpress钩子WP_query获取所有帖子并根据评论变量对它们进行排序?
我有这个代码,它取出了一切。我想根据comments_number( '0', '1', '%' );
(顶部较高的评论者)订购此列表,并将显示的总数限制在前4位。
到目前为止我的代码:
<ul>
<?php
global $post;
$all_events = tribe_get_events(
array(
'eventDisplay'=>'upcoming',
'posts_per_page'=>-1
)
);
foreach($all_events as $post) {
setup_postdata($post);
?>
<li>
<a title="<?php the_title(); ?>" href="<?php the_permalink(); ?>">
<?php
if ( has_post_thumbnail () ) {
echo get_the_post_thumbnail(array(100,100));
} else {
echo '<img width="100" height="100" alt="'
.get_the_title().'" title="'
.strip_tags(get_the_excerpt()).'" src="'
.get_bloginfo('template_url')
.'/thumbs/event-recent-thumb-na.png">';
}
?>
</a>
<h3><a title="<?php the_title(); ?>" href="<?php the_permalink(); ?>">
<?php the_title(); ?></a></h3>
<span><?php echo tribe_get_start_date( $p->ID, true, 'M j, D.' ) . " - "
. tribe_get_end_date( $p->ID, true, 'D.' ); ?></span>
<p><?php echo strip_tags(get_the_excerpt()); ?></p>
<span class="eventinterested"><?php comments_number( '0', '1', '%' ); ?>
<?php _e('interested so far','holidayge'); ?></span>
</li>
<?php } //endforeach ?>
<?php wp_reset_query(); ?>
</ul>
有没有办法在那里修改foreach
和订单清单?我不是php程序员,但似乎合乎逻辑......我正在阅读Sort似乎是正确的解决方案?
答案 0 :(得分:0)
MySQL在查询方面要比PHP快得多,所以你应该尽量不要求比你想要的更多的帖子。将所有帖子加载到PHP中并不能很好地扩展。
我猜tribe_get_events()使用get_posts()。如果这是正确的,这应该可以解决问题:
$all_events = tribe_get_events(
array(
'eventDisplay' => 'upcoming',
'posts_per_page' => 4,
'orderby' => 'comment_count',
'order' => 'DESC'
)
);
可以在the documentation on get_posts()找到更多信息。