我已经在我的主题中使用Pretyphoto脚本在一个漂亮的灯箱中打开精选图像。
现在我想添加rel =" pretyphoto"到wordpress画廊图像 我无法手动执行此操作,因为我需要编辑media.php核心文件
所以我想使用一个能完成这项工作的功能。
我已经在这里找到了评论的解决方案:
function add_nofollow_to_comments_popup_link() {
return ' rel="nofollow" ';
}
add_filter( 'comments_popup_link_attributes', 'add_nofollow_to_comments_popup_link' );
所以我需要类似于wordpress的图库图像。
由于
答案 0 :(得分:0)
找到自己答案:
以下是有兴趣的人的解决方案。 在主题functions.php中添加此代码
add_filter( 'wp_get_attachment_link', 'sant_prettyadd');
function sant_prettyadd ($content) {
$content = preg_replace("/<a/","<a rel=\"prettyPhoto[slides]\"",$content,1);
return $content;
}
画廊附件必须是MEDIA FILE