Hide caption front page
-
I’m trying to hide image captions from my index.php/front page on https://www.indieshuffle.com/
Please note that to see an example, look at “The Octopus Project” post on https://www.indieshuffle.com/?paged=2 (this may have been bumped to paged=3 or 4 by the time you read this).
I’m using the following code in my functions.php to keep images off the front (and it works like a charm), but the captions still appear:
<?php add_filter('the_content','wpi_image_content_filter',11); function wpi_image_content_filter($content){ if (is_home() || is_front_page()){ $content = preg_replace("/<img[^>]+\>/i", "", $content); } return $content; } ?>
How would I get this to work for captions?
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Hide caption front page’ is closed to new replies.