从the_content中删除一些html标记

时间:2014-09-26 21:17:09

标签: wordpress

如何使用以下设置输出the_content?

允许的标签:

    <br />, <p>

不允许:

    <div> <p style""> <span> <font>

1 个答案:

答案 0 :(得分:2)

您将strip_tags()the_content过滤器结合使用:

if( !is_admin() ) // not admin side
    add_filter( 'the_content', 'so_26068464' );

function so_26068464( $content )
{
    return strip_tags( $content, '<p><br>' );
}

关于如何删除标记 内容 的问题an example at PHP's manual,但我还没有对其进行测试。