Strip Paragraph Tag

时间:2011-12-15 作者:AndrettiMilas

在我的印象中。php我正在使用此代码获取每个图像的图像标题。问题是段落标记(<p> ) 正在围绕它添加,我不希望这样。有人能告诉我怎么脱掉这个标签吗?

<?php if ( !empty($post->post_excerpt) ) the_excerpt(); ?>

2 个回复
最合适的回答,由SO网友:cbaigorri 整理而成

strip_tags — 从字符串中删除HTML和PHP标记

if (!empty($post->post_excerpt)) {
  $excerpt_raw = strip_tags(get_the_excerpt()); 
  echo $excerpt_raw;
}

SO网友:Joseph Leedy

您还可以使用remove_filter(\'the_excerpt\', \'wp_autop\') 我就是这样做的。

结束

相关推荐

404 for index.php

我最近在IIS7上从linux切换到windows主机。我的permalinks工作得很好,但由于某种原因,当我尝试查看站点索引(index.php)时,我得到了一个内部wordpress 404。我只能假设这与迁移有关,但我对原因感到困惑。我的网站。配置包含以下内容:<?xml version=\"1.0\" encoding=\"UTF-8\"?> <configuration> <system.webServer>