我在wordpress中有8种帖子类型,在中有以下查询functions.php
归档8次
那么它会在mysql上加载并减少加载时间吗?
// random jokes
function randJokes($rJokes){
$RandJokesQuery = new WP_Query(array(\'post_type\'=>\'jokes\',\'posts_per_page\'=>$rJokes,\'orderby\'=>\'rand\')); ?>
<h2 class="title">Random Jokes</h2>
<ul>
<?php while ($RandJokesQuery->have_posts()) : $RandJokesQuery->the_post(); ?>
<li><a href="<?php the_permalink(); ?>"><?php if(function_exists(\'short_title\')) { short_title(90); } ?></a></li>
<?php endwhile; ?>
</ul><?php
wp_reset_postdata();
}