Answer the question
In order to leave comments, you need to log in
How to remove gallery output in the_content?
How to output through the_content()
only text (regular pictures) excluding the gallery, since then it will be displayed throughget_post_gallery()
Answer the question
In order to leave comments, you need to log in
Removing shortcodes (gallery is a shortcode) from the_content()
the home blog page.
add_filter('the_content', 'remove_shortcode_from_home');
function remove_shortcode_from_home($content) {
if ( is_home() ) {
$content = strip_shortcodes( $content );
}
return $content;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question