请帮我解决这个问题,这样我就不必编辑插件和插件的 css,而我已经准备好通过这个插件查询帖-6ren">
gpt4 book ai didi

php - Wordpress(Wordpress热门帖子插件)查询

转载 作者:搜寻专家 更新时间:2023-10-31 22:05:38 24 4
gpt4 key购买 nike

我可以使用吗:

<?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,而我已经准备好通过这个插件查询帖子。

谢谢。

插件:http://wordpress.org/plugins/wordpress-popular-posts/

最佳答案

@alen imeko 据我了解你的要求,为什么你需要这个插件,你只需要在你需要的地方显示最受欢迎的帖子,你只需要将帖子设置为置顶并调用置顶帖子使用相同的查询发布方法,然后它将自动在相应位置呈现您指定的帖子。为此,只需转到帖子以使其具有粘性,在发布/更新按钮上方的顶部,您将看到一个选项visibility,单击它的编辑部分,您将向下滑动选中复选框的选项有文字将这篇文章贴在首页,之后你只需要执行查询。

      $args =  array(     'post__in' => get_option('sticky_posts'),    'posts_per_page' => 20,    'orderby' => 'title',    'post_date' => 'DESC',    'cat' => your category id    );     query_post($args); ?>

然后您需要像在 wordpress 中一样简单地使用 while 循环。

关于php - Wordpress(Wordpress热门帖子插件)查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19154699/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com