开发wordpress的人都知道wp_head()输出的内容,源码中是顶部对齐的。强迫症的人总想缩进对齐。如下:

方法如下,在主题functions.php中创建函数:

function indented_wp_head()
{
    ob_start();
    wp_head();
    $header = ob_get_contents();
    ob_end_clean();
    echo preg_replace("/\n/", "\n\t", substr($header, 0, -1));
    echo "\n";
}

然后在原本调用wp_head()的位置使用indented_wp_head()函数,效果如下: