无法理解为什么这行不通:
function my_get_attachment_link($html){
$postid = get_the_ID();
$html = str_replace(\'<a\',\'<a rel="shadowbox[\'.$postid.\']"\',$html);
return $html;
}
add_filter(\'wp_get_attachment_link\',\'my_get_attachment_link\',10,1);
只是尝试将单个post视图上的所有图像连接到lightbox脚本。
仅供参考,这也不起作用:http://wordpress.mfields.org/2010/thickbox-for-wordpress-gallery/#highlighter_196509
什么东西会把它塞住?