body_class()将类输出到页面

时间:2018-09-02 16:07:33

标签: php html wordpress custom-theme

我有一个自定义WP页面,并且希望能够定位不同的页面ID类。 当我将body_class()添加到标题部分时,它将所有类输出到页面!  标头的开头也有一个gtag谷歌分析脚本标签,但我认为这不会影响它。

     <!DOCTYPE html>
<html>
    <head>


<meta name="google-site-verification" content="Ey9SSwK6cHm5KMRuCUinWcWx1URGF8FZ8FV5HnG2B4A" />
    <?php wp_head(); ?>
    <title>The Carnivore Diet - The Ultimate Diet for Weight loss, Digestion and Inflammation!</title>
</head>
<body>
    <?php body_class(); ?>> 

1 个答案:

答案 0 :(得分:0)

答案是我必须在body标签中为任何陷入困境的人添加body_class()

<body <?php body_class(); ?>>