function abc_the_content($num_words) {
global $post;
$content = $post->post_content;
$content = strip_tags($content);
$content = wp_trim_words($content, $num_words, $more = null);
echo apply_filters(\'the_content\', $content);
}
如果只想去除img标记,请将“去除标记”行更改为该行
$content = preg_replace("/<\\/?img(.|\\s)*?>/i", \'\', $content);