我的WP functions.php文件中包含以下代码:
function custom_excerpt($new_length = 22, $new_more = ' ...') {
add_filter('excerpt_length', function () use ($new_length) {
return $new_length;
}, 999);
add_filter('excerpt_more', function () use ($new_more) {
return $new_more;
});
$output = get_the_excerpt();
$output = apply_filters('wptexturize', $output);
$output = apply_filters('convert_chars', $output);
$output = '<p>' . $output . '</p>';
echo $output;
}
我使用以下代码来替换它:
php custom_excerpt(50, ' ...');
我的问题是:如何摆脱所有“nbsp;”我的WP页面上所有摘录中的实体?