首页 > 解决方案 > Wordpress Gutenberg img 或画廊链接,如何从全尺寸更改为大尺寸

问题描述

在我的 wordpress 项目中,如果图像链接到媒体选项打开,我想将图像 url 大小从全尺寸更改为大格式。我试过这个过滤器,但不幸的是它不起作用......

function default_get_attachment_link_filter( $content, $post_id, $size, $permalink ) {
        if (! $permalink) {
            $image = wp_get_attachment_image_src( $post_id, 'large' );
            $new_content = preg_replace('/href=\'(.*?)\'/', 'href=\'' . $image[0] . '\'', $content );
            return $new_content;
        }
    }
add_filter('wp_get_attachment_link', 'default_get_attachment_link_filter', 10, 4);

任何帮助都非常感谢。谢谢

标签: wordpressimagegallerywordpress-gutenberg

解决方案


推荐阅读