そのシンボルが表示されないようにするためにできることはありますか? 私は、「会社」という単語の末尾と「成長」という単語の末尾で、テキスト内のタグを分割するために使用します。
助けていただければ幸いです。:)
これは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;
?>