Retaining original image size

时间:2013-12-18 作者:user2532458

因为我有一个网站Comic reading, 如果我使用缩小的图像大小,也会减少难以阅读的文本。我想保留图像大小。即使创建滚动窗口也没有问题。贴子宽度应根据图像进行调整。

有什么有用的吗?我已尝试在中设置0,0个值Settings -> Media.

3 个回复
SO网友:Subharanjan

Paste this code in the style.css file of you current active theme. (file path: /wp-content/themes/genesis-sample/style.css )

.entry-content img.size-full {
    max-width: none !important;
}
SO网友:Yamu

在你的循环中,而不是

   <?php the_post_thumbnail( $size, $attr ); ?>
您可以获得原始大小的图像,如下所示:

while(have_posts()):the_post();
$orignalimage= wp_get_attachment_image_src(get_post_thumbnail_id(),\'full\');
$imageurl=$orignalimage[0];
//now to show the image you can use the html <img> tag
echo \'<img src="\'.$imageurl.\'"/>
//you can also give the height width and other parameters.
endwhile;

SO网友:Simon

如果可以更改CSS,只需删除max_width.site-inner, .wrap 行(.site-inner,.wrap{margin:0 auto;max-width:1140px;}) 主题将适应大屏幕。

否则,请删除img 选择器来自embed, iframe, img, object, video, .wp-caption { max-width: 100%; } (至embed, iframe, object, video, .wp-caption { max-width: 100%; } ) 图像将以内联方式显示在width 的属性img 标签

结束

相关推荐

Link post images to post

出于某种原因,我找不到任何好的方法来将帖子图像链接到帖子。我在上找到一个脚本http://wpguy.com/plugins/linked-image/ 它可以工作,但不会删除旧链接,而是将旧链接和图像包装在新的a标记中。我想要的是删除旧链接,这样图像只包装在一个a标记中。这是我目前拥有的脚本:function wpguy_linked_image($content){ $searchfor = \'/(<img[^>]*\\/>)/\'; $r