强制WordPress库使用媒体文件链接而不是附件链接

Dar*_*ney 3 php wordpress hook add-filter

是否有过滤器或挂钩强制WordPress图库使用媒体文件链接而不是附件链接.我无法相信我的客户在创建图库时手动切换设置. http://cl.ly/image/2g1L1G2c2222

提出另一个问题,即Media File不是默认类型.

Obm*_*nen 8

您基本上可以使用默认的库短代码.

remove_shortcode('gallery', 'gallery_shortcode'); // removes the original shortcode
    add_shortcode('gallery', 'my_awesome_gallery_shortcode'); // add your own shortcode

    function my_awesome_gallery_shortcode($attr) {
    $output = 'Codex is your friend' ;
    return $output;
}
Run Code Online (Sandbox Code Playgroud)

在自定义功能中,您可以设置任何您想要的内容..查看原始图库短代码.

另一种方法是实际过滤属性(如果你将转到上面的链接,你会看到一个过滤器钩子)

add_shortcode( 'gallery', 'my_gallery_shortcode' );

function my_gallery_shortcode( $atts )
{
    $atts['link'] = 'file';
    return gallery_shortcode( $atts );
}
Run Code Online (Sandbox Code Playgroud)