Y
Y
Yevhenii K2018-02-02 16:43:43
WordPress
Yevhenii K, 2018-02-02 16:43:43

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

1 answer(s)
M
Mike, 2018-02-02
@AFI19

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;
}

If just a gallery or other shortcode, preg_replace can be used.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question