目前正在使用html - > wordpress主题和与blogcontent的斗争。 我制作了一个页面博客文章模板和一个单博客文章模板。
问题如下:
在我的单博文模板中,我编写了代码:
<p class="blogpost-text"><?php the_content(); ?></p>
其中,我认为通常应将所有博文内容放在“blogpost-text”类中。但是,当我在浏览器中查看代码时会发生这种情况:
<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)
答案 0 :(得分:2)
如果对p标签没有特殊要求,请使用其他html标签。
<div class="blogpost-text"><?php the_content(); ?></div>
答案 1 :(得分:0)
请使用此:
$('.tabmenu li').each(function(){
var oc = $(this).attr('onclick');
if(oc.match(/focusassortment/i)){
$(this).addClass('black');
}
});
我测试了它。它的工作正常。