这个问题已经解决了。
在我的表格中,我的卡片上只显示了30个字符的摘录。我使用这行代码:
$post_excerpt = ( get_the_excerpt() ) ? mb_substr( get_the_excerpt(), 0, 30 ) . \'...\' : \'\';
在我的一篇文章节选中,有一段html代码,上面的代码正在被剪切。我仍然不知道为什么在剪切html代码时会添加一些小的html标记。
为了解决这个问题,我添加了以下代码:
$post_excerpt = wp_strip_all_tags( $post_excerpt );
谢谢!