我可以使用:
<?php
if (function_exists( 'wpp_get_mostpopular' )) {
wpp_get_mostpopular('range=weekly&order_by=views&limit=8');
}
?>
使用自己的模板输出进行查询的内部自定义模板(内部查询帖子):
<?php query_posts(????????); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="myclass">
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php echo get_the_post_thumbnail( $post_id, 'thumbnail'); ?></a>
</div>
请帮我这个,所以我没有编辑插件和插件的CSS,而我已经准备好通过这个插件查询帖子了。
感谢。