I’m trying to create a filter to display only the text of a the_content without the images. But not working, I tried it but it does not display anything, it is blank
add_filter('the_content', 'importgaleria');
function importgaleria($content) {
global $post;
if (is_singular()) {
$content=$post->post_excerpt;
return $content;
} else {
return $content;
}
}
I managed to solve with this code
You can try below code