2014-12-04 78 views
1

我刚安装的WordPress的插件:手动相关文章(https://wordpress.org/plugins/baw-manual-related-posts/WordPress插件手册相关文章

安装我试图手动广告相关帖子的网页后。
但我只能选择帖子或页面....关于插件,它也应该可以使用媒体功能,但它不会显示出来。

我降级到3.9.2的WordPress是这个插件的所需版本(有较新版本的WordPress不支持)

希望有人能帮助我解决这个问题。

回答

0

试试这个代码在您的博客手动添加相关文章

<div class="relatedposts"> 
 
    <h3>Related posts</h3> 
 
    <?php 
 
     $orig_post = $post; 
 
     global $post; 
 
     $tags = wp_get_post_tags($post->ID); 
 
    
 
     if ($tags) { 
 
      $tag_ids = array(); 
 
     foreach($tags as $individual_tag) $tag_ids[] = $individual_tag->term_id; 
 
      $args=array(
 
       'tag__in' => $tag_ids, 
 
       'post__not_in' => array($post->ID), 
 
       'posts_per_page'=>4, // Number of related posts to display. 
 
       'caller_get_posts'=>1 
 
      ); 
 
    
 
     $my_query = new wp_query($args); 
 
    
 
     while($my_query->have_posts()) { 
 
      $my_query->the_post(); 
 
     ?> 
 
    
 
     <div class="relatedthumb"> 
 
      <a rel="external" href="<? the_permalink()?>"><?php the_post_thumbnail(array(150,100)); ?><br /> 
 
      <?php the_title(); ?> 
 
      </a> 
 
     </div> 
 
    
 
     <?php } 
 
     } 
 
     $post = $orig_post; 
 
     wp_reset_query(); 
 
     ?> 
 
    </div>