对于您提到的示例,您可以向stylesheet_directory
钩
add_filter(\'stylesheet_directory\',\'change_stylesheet_dir\') ;
function change_stylesheet_dir($stylesheet_dir, $stylesheet, $theme_root) {
# do stuff - change the stylesheet directory
$new_stylesheet_directory = \'http://mysites.com/hello/\';
return new_stylesheet_directory ;
}
对于bloginfo的任何其他参数,您可以查看
bloginfo
, 在wp includes/general模板中。php。按照对其他bloginfo参数的调用,查看是否有针对它的过滤器。