如果您运行wp_kses()
在…上the_excerpt()
(通过过滤器)您可以将特定的HTML标记等列入白名单。在您的情况下,代码可能如下所示:
if( is_page( \'your_page\' ) ) {
add_filter( \'the_excerpt\', \'wpse44363_filter_the_excerpt\' );
}
function wpse44363_filter_the_excerpt( $excerpt ) {
// this allows no html, you can allow only links or something of that nature
$allowed_html = array();
return wp_kses( $excerpt, $allowed_html );
}