WordPress相关帖子w/拇指

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WordPress相关帖子w/拇指相关的知识,希望对你有一定的参考价值。

Posts with thumbs by category
  1. <?php $orig_post = $post;
  2. global $post;
  3. $categories = get_the_category($post->ID);
  4. if ($categories) {
  5. $category_ids = array();
  6. foreach($categories as $individual_category) $category_ids[] = $individual_category->term_id;
  7.  
  8. $args=array(
  9. 'category__in' => $category_ids,
  10. 'post__not_in' => array($post->ID),
  11. 'posts_per_page'=> 3, // Number of related posts that will be shown.
  12. 'caller_get_posts'=>1
  13. );
  14.  
  15. $my_query = new wp_query( $args );
  16. if( $my_query->have_posts() ) {
  17. echo '<h3>Related Posts</h3><ul>';
  18. while( $my_query->have_posts() ) {
  19. $my_query->the_post();?>
  20. <li><a href="<? the_permalink()?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_post_thumbnail(); ?></a></li>
  21. <?
  22. }
  23. echo '</ul>';
  24. }
  25. }
  26. $post = $orig_post;
  27. wp_reset_query(); ?>

以上是关于WordPress相关帖子w/拇指的主要内容,如果未能解决你的问题,请参考以下文章

PHP Wordpress查询从帖子/页面中提取片段

在 Wordpress 中显示相关帖子

WordPress 根据分类术语显示相关帖子

WordPress Hook 预发布更新

滚动时在另一个片段视频视图中重叠一个片段的视频拇指

Wordpress - 与帖子相关的类别列表