0

我使用产品的导入插件,从 xml 文件(通过 url)导入的产品,一个 xml 文件的标题中有这个字符串:

< product_title >
< ![CDATA[
< font color=red >All cities:< /font > Lorem Ipsum is simply dummy text of the printing and typesetting industry. !
]] >
< /product_title >

从我的标题中删除它的功能是什么:(< font color=red > .. < /font >
它按原样显示,没有编码)

非常感谢,斯塔西斯

4

1 回答 1

1

您可以strip_tags()在 PHP 中使用。

<title><?php echo strip_tags($title); ?></title>

<h1 class="page-title"> <?php if (strlen($btp_title) > 160) { $btp_title = substr($btp_title, 0, 160).'...'; } echo esc_html( $btp_title ); ?> </h1>

会成为

<h1 class="page-title"> <?php if (strlen($btp_title) > 160) { $btp_title = substr($btp_title, 0, 160).'...'; } echo strip_tags( esc_html( $btp_title ) ); ?> </h1>
于 2013-04-22T10:26:08.160 回答