我正在使用colorbox在我的wordpress网站上查看更大的图片。为此,我必须将图像插入帖子,关闭wordpress媒体弹出窗口,单击图像,单击“编辑图像”图标,跳至“高级设置”并在选项下添加“附件”字段“link rel”。
现在缩略图通过链接rel =“attachment”连接到灯箱。许多不必要的步骤也为普通用户提出。
任何人都知道在将帖子添加到帖子时添加链接rel =“attachment”自动的解决方案?其他解决方案也受到赞赏。
请在此处查看缩略图和标记:http://pokerstrategy.org.uk/news/2011-pca-main-event-final-table-determined
JS for colorbox:$("a[rel='attachment']").colorbox();
答案 0 :(得分:0)
也许你可以为the_content添加一个过滤器,而不是jQuery,这样当Wordpress加载帖子时,它会自动反对w / jQuery吗? 我在想这样的事情:
add_filter( 'the_content', 'lightboxfix');
function lightboxfix ($content) {
$content = preg_replace("/<img/","<img rel=\"attachment\"",$content,1);
return $content;
}
基本上,它抓取帖子内容,将所有<img..
元素更改为<img rel="attachment"..
。我会试一试。