Wordpress 博客内容不在 class 中
Wordpress blogcontent not in class
目前正在使用 html -> wordpress 主题,并且在博客内容方面遇到困难。
我制作了一个页面博文模板和一个单博文模板。
问题如下:
在我的单博文模板中,我写了代码:
<p class="blogpost-text"><?php the_content(); ?></p>
我认为通常应该将所有博文内容放在 "blogpost-text"-class 中。然而,当我在浏览器中查看代码时会发生这种情况:
<p class="blogpost-text"></p> -> EMPTY ?
<p>Lorem ipsum... </p> -> (this is the blogpost content text1)
<p></p> -> Enter inside the blogpost content
<p>Lorem ipsum... </p> -> (this is the blogpost content text2)
如果对 p 标签没有特殊要求,则使用其他 html 标签。
<div class="blogpost-text"><?php the_content(); ?></div>
请使用这个:
<p class="blogpost-text"><?php echo get_the_content(); ?></p>
我已经测试过了。它工作正常。
目前正在使用 html -> wordpress 主题,并且在博客内容方面遇到困难。 我制作了一个页面博文模板和一个单博文模板。
问题如下:
在我的单博文模板中,我写了代码:
<p class="blogpost-text"><?php the_content(); ?></p>
我认为通常应该将所有博文内容放在 "blogpost-text"-class 中。然而,当我在浏览器中查看代码时会发生这种情况:
<p class="blogpost-text"></p> -> EMPTY ?
<p>Lorem ipsum... </p> -> (this is the blogpost content text1)
<p></p> -> Enter inside the blogpost content
<p>Lorem ipsum... </p> -> (this is the blogpost content text2)
如果对 p 标签没有特殊要求,则使用其他 html 标签。
<div class="blogpost-text"><?php the_content(); ?></div>
请使用这个:
<p class="blogpost-text"><?php echo get_the_content(); ?></p>
我已经测试过了。它工作正常。