如何在图库中使用缩略图?

时间:2019-02-09 作者:Pete

自Wordpress 5以来。他们删除了图库的缩略图大小选项。有没有办法激活或构建解决方案?我喜欢建立一个经典的灯箱画廊。

enter image description here

2 个回复
SO网友:Md. Ehsanul Haque Kanan

有一个关于图像大小的项目正在进行中。你可以跟着它right here.

现在,您可以尝试使用shortcode_atts_gallery 滤器查看这些代码以获得提示:

/* Register shortcode_atts_gallery filter callback */
add_filter( \'shortcode_atts_gallery\', \'meks_gallery_atts\', 10, 3 );

/* Change attributes of wp gallery to modify image sizes for your needs */
function meks_gallery_atts( $output, $pairs, $atts ) {

/* You can use these sizes:
- thumbnail
- medium
- large
- full
or, if your theme/plugin generate additional custom sizes you can use them as well
*/

$output[\'size\'] = \'medium\'; //i.e. This will change all your gallery images to "medium" size

return $output;

}
您可以找到有关shortcode_atts_gallery right here.

SO网友:tmdesigned

这是一个持续的过程。目前无法手动调整gallery块上的图像大小。WordPress核心开发社区正在讨论this github issue.

仅仅因为默认的gutenberg gallery块不允许您这样做,并不意味着您不能安装第三方插件、自己创建自定义块(我建议使用ACF自定义块),或者为此特定用途恢复到经典编辑器。

相关推荐

Organize functions.php

组织职能的最佳方式是什么。php的性能?我有几个add\\u操作调用、几个add\\u主题支持、几个add\\u过滤器和4个附加函数。对于面包屑、样式表、注册菜单和小部件。我们是否需要遵守订单?例如,首先是所有add\\u过滤器函数,然后是add theme\\u support等。不确定添加代码是否相关,因为这是一个一般性问题。如果需要,我很乐意更新这篇文章。