更改Wordpress内容字体

时间:2013-10-14 10:59:04

标签: html css wordpress fonts

我正在尝试更改内容的字体系列(the_content())但是当我用这样的<P>标签包装它时

<p class="naskh"><?php the_content(); ?></p>

当我在Chrome上的开发者工具上检查时,内容不在<P>标记内,就像那样:

<p class="naskh" lingdex="0"></p>
<p lingdex="1"> the content ...</p>

所以我不能给内容我想要的字体类型。我搜索了很多并尝试了许多给定的解决方案,但没有为我工作。 怎么办?

2 个答案:

答案 0 :(得分:0)

请勿将the_content()包裹在p中。相反,你可以这样做

<div class="someclass">
    <?php the_content(); ?>
</div>

然后在你用css你可以有这样的东西

.someclass, .someclass p, .someclass h1 {
    font-family: you_custom_font_family, Arial, Helvetica;
}

答案 1 :(得分:0)

这不应该是技术问题:

wordpress默认使用来过滤文本。  要删除过滤器,您可以使用wordpress的功能

你可以写下面的代码

remove_filter( 'the_content', 'wpautop' ); 

而不是

<?php the_content(); ?>

它会删除自动生成的<p>代码。

由于