Wordpress小部件图像太小

时间:2015-03-09 13:39:23

标签: php html css wordpress image

我在Wordpress上遇到更新小部件的问题。我有一个侧边栏Widget使用Gabfire的Widget Pack运行版本:1.4.4,Wordpress:4.1.1和主题模式也是最新的。

问题:侧边栏正在加载32x32像素的timthumb。然后将其重新调整为90x90,这导致图像看起来非常像素化。

我搜索了代码,感觉我需要更改调用才能获得更大的缩略图。以下是代码:

function gab_custom_query() {
    $widget_ops = array( 'classname' => 'gab_custom_query', 'description' => 'Query custom entries' );
    $control_ops = array( 'width' => 520, 'height' => 350, 'id_base' => 'gab_custom_query' );
    $this->WP_Widget( 'gab_custom_query', 'Gabfire: Custom Content Query', $widget_ops, $control_ops);
}

  public function widget($args, $instance) {      
    extract( $args );
    $title    = $instance['title'];
    $swap = $instance['swap'] ? '1' : '0';
    $video = $instance['video'] ? '1' : '0';
    $c_image = $instance['c_image'];
    $c_link = $instance['c_link'];
    $postnr    = $instance['postnr'];
    $postids    = $instance['postids'];
    $cat_or_postpage    = $instance['cat_or_postpage'];
    $post_order    = $instance['post_order'];
    $d_thumb    = $instance['d_thumb'] ? '1' : '0';
    $postmeta    = $instance['postmeta'] ? '1' : '0';
    $media_w    = $instance['media_w'];
    $media_h    = $instance['media_h'];
    $excerpt_l    = $instance['excerpt_l'];
    $thumbalign    = $instance['thumbalign'];
    $postcls    = $instance['postcls'];
    $titlecls    = $instance['titlecls'];

以下是问题的打印屏幕:

Image of Low Quality Thumbnails

如您所见,图像质量很差。非常感谢任何帮助

0 个答案:

没有答案