在我的印象中。php我正在使用此代码获取每个图像的图像标题。问题是段落标记(<p>
) 正在围绕它添加,我不希望这样。有人能告诉我怎么脱掉这个标签吗?
<?php if ( !empty($post->post_excerpt) ) the_excerpt(); ?>
最合适的回答,由SO网友:cbaigorri 整理而成
strip_tags — 从字符串中删除HTML和PHP标记
if (!empty($post->post_excerpt)) {
$excerpt_raw = strip_tags(get_the_excerpt());
echo $excerpt_raw;
}