我想将 Prettyphoto 添加到我的博客并准备过滤器:
add_filter( 'wp_get_attachment_link', 'sant_prettyadd');
function sant_prettyadd ($content) {
$content = preg_replace("/<a/","<a rel=\"prettyPhoto[slides]\"",$content,1);
return $content;
}
但是我应该在哪里查找文件 function.php ?