php – 强制WordPress库使用媒体文件链接而不是附件链接
发布时间:2020-12-13 21:50:49 所属栏目:PHP教程 来源:网络整理
导读:是否有过滤器或挂钩强制WordPress图库使用媒体文件链接而不是附件链接. 我无法相信我的客户在创建图库时手动切换设置. http://cl.ly/image/2g1L1G2c2222 提出另一个问题,即Media File不是默认类型. 解决方法 您基本上可以使用默认的库短代码. remove_shortco
是否有过滤器或挂钩强制WordPress图库使用媒体文件链接而不是附件链接.
我无法相信我的客户在创建图库时手动切换设置. http://cl.ly/image/2g1L1G2c2222 提出另一个问题,即Media File不是默认类型. 解决方法
您基本上可以使用默认的库短代码.
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; } 在自定义功能中,你可以设置你想要的任何东西..看看original gallery shortcode. 另一种方法是实际过滤属性(如果你将转到上面的链接,你会看到一个过滤器钩子) add_shortcode( 'gallery','my_gallery_shortcode' ); function my_gallery_shortcode( $atts ) { $atts['link'] = 'file'; return gallery_shortcode( $atts ); } (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |