图像标题不与Prettyphoto与Wordpress集成显示

时间:2013-08-28 12:52:46

标签: wordpress image-gallery

我使用Prettyphoto集成到我的文字新闻网站, 我有问题在prettyphoto显示图像的标题和描述。我发现问题是当我编辑一个图库(在媒体中)时,我可以看到所有图像都有标题,其他字段填写但是当使用prettyphoto在灯箱中查看图库时,这些标题不再显示。 这里是img的HTML

任何帮助将不胜感激! 在此先感谢!!

1 个答案:

答案 0 :(得分:0)

functions.php

中添加此内容
add_filter('wp_get_attachment_link', 'rc_add_rel_attribute');
    function rc_add_rel_attribute($link) {
    global $post;
   return str_replace('<a href', '<a rel="prettyPhoto[pp_gal]" href', $link);
}