我能做些什么,这样符号就不再显示了吗?我用它来破坏文本中的标签,在“公司”一词的末尾以及“增长”一词的末尾。
我感谢任何帮助。 :)
这是css:
.homepage .simple .article-excerpt {
background: none;
font-family: Helvetica, Arial, "Lucida Grande", sans-serif;
font-weight: normal;
font-style: normal;
font-size: 22px;
line-height: 30px;
color: #fff;
margin-top: 10px;
}
这是html
<p class="article-excerpt">We work with the world’s great companies<br>
to catalyze profitable and sustainable growth<br>
through innovation.</p>
这就是我从WordPress中提取文本的方式:
<?php if ( !empty( $post->post_excerpt ) ) :
the_excerpt();
else :
false;
endif;
?>