标记页面页脚缩略图

时间:2015-08-10 03:54:01

标签: php wordpress

所以这就是事情。

默认情况下,在我的wordpress主题上,Tag页面上的Numbered导航无法正常工作。仅限标签页面。所以朋友为我解决了这个问题。他通过将此代码放在我的functions.php中来完成它:

    add_filter('pre_get_posts', 'Pricerr_g_query_post_type');
function Pricerr_g_query_post_type($query) {
  if(is_tag()) {
    $post_type = get_query_var('post_type');
 if($post_type)
     $post_type = $post_type;
 else
     $post_type = array('post','job');
    $query->set('post_type',$post_type);
 return $query;
    }
}

现在,当实现该解决方案时,标签页面上我的帖子和小部件的缩略图会中断。所以我的朋友通过在functions.php中添加此代码来修复它:

<? $image = wp_get_attachment_image_src( get_post_thumbnail_id( get_the_ID() ), 'thumbnail' ); ?>
                <a href="<?php the_permalink(); ?>"><img width="102" height="72" class="<?php echo $img_class; ?>" 
                src="<?php echo $image[0]; ?>" /></a>

这样就可以修复标记页面上的Post缩略图,但Widgets缩略图(最新帖子,精选帖子)仍然无法显示。

您可以在此页面上看到我正在谈论的内容。向下滚动并查看页脚小部件:http://bit.ly/1PfmNjM

希望有人可以提供帮助。谢谢。

0 个答案:

没有答案