Place following code to your theme functions.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;
}
From http://wordpress.org/support/topic/how-to-hide-images-from-front-page
Related Posts:
- Responsive class to all the images in the content
- WordPress Theme Preview Image
- The the_post_thumbnail without srcset?
- Get the first image from post content (eg.: hotlinked images)
- Are content.php and content-single.php the same?
- How to modify an image block in Gutenberg WordPress 5?
- How can I set image sizes and still have responsive images using the srcset attribute?
- Add default Backgrounds
- Edit srcset and sizes attributes in Gutenberg image, cover and gallery – blocks
- wp_get_attachment_image_attributes not working for me
- Specify image dimensions
- How to get gallery images?
- add_image_size is scaling, even though crop is set to true
- Featured Image in 4.4 should be larger on mobile device
- How to use the responsive images feature from WP 4.4 in your themes
- Confused about image sizing business in WordPress
- Unexpected width and srcset attributes for the_post_thumbnail();
- How do I get gallery thumbnail URL and change the default thumbnail size?
- How wordpress handle upload images and how to use them in the code
- Replace Home with image link inside custom header menu
- How to hide and content from auto-generated excerpts?
- Featured Image Size
- the_content() in single-{post-type}.php problem
- How to set dimensions of the post thumbnails (featured images)
- Cannot get full thumbnail size using the_post_thumbnail
- wp_get_attachment_image_src() width and height boolean
- How to float an image in Gutenberg
- A mystery 300px image size
- Custom Field returning Numerical Value for Image rather than URL
- Why an arugment is missing in wp_get_attachment_image_attributes?
- Displaying recent post excerpts on static front page
- Reasons why all thumbnail sizes aren’t working
- How to make a local cache of mshots images
- How do I Add images uploaded in the post to a default custom field
- attachment.php code or tutorial
- Change “Thumbnail”, “Medium” and “Large” image sizes using functions.php?
- image url relative path not working in css file
- Default image size not working
- Force Balance Tags not working
- WordPress Media Uploader in page template (On Front-end)
- Responsive Images – crop don’t seem to work
- How do I include pre-installed images in a theme?
- Inserting images in multiple posts native gallery
- How to place HTML tags in content from the_content()?
- Can I get the ID of an inserted / linked image?
- Add attachment for all images in post
- Changing Header Image Every N Minutes/Seconds
- Custom Blocks as part of a theme
- Do not display post images on front page
- What is the meaning of WordPress’s recommended css classes and where are they applied?
- The Content is not Wraping in tag
- Gallery thumbnails very small
- Edit value of the_content() before showing
- Custom image size vs CSS sizing
- Getting Different Size Of Attachment Images
- In creating a theme, how can i allow a user to change an image outside post/page content?
- Change Responsive Images Maximum Width of 1600px
- How to show a manageable list of images on a post?
- How To Pick Custom Size Of Uploaded Image In Theme Via the_post_thumbnail();?
- Change image size depending on page
- How to disable thumbnail filter for a specific template part or image size?
- Why tags are displayed bellow the content and not inside
- How to obfuscate theme directory URLs
- Are seven additional image sizes are too many?
- Remove link on full-size images
- Post and page content not displaying in search results
- how to retrieve the image title for image Post Format
- Theme logo metadata into template file
- WordPress creating images if uploaded image is greater than 960px on one side?
- Single.php the_excerpt loads same as the_content not loading read more line
- pre_get_comments or the_content filter
- WordPress Load Only Page Text
- How to fix WordPress images not showing up in local hosted XAMPP server?
- Change Image Sizes for Mobile Theme
- How to make excerpt image be full size instead of thumbnail?
- How to add cropped custom header image?
- Is there a way to serve different resolution images to different devices?
- How can I scale down the width of images in bulk that are embedded in posts throughout the site?
- Add image URL automatically to custom field?
- How can I remove image taxonomy pages from my theme and from Google?
- Dynamic Image Links Depending on Excerpt/’Single Post’ View
- Designing a custom archive.php inspired by the Autofocus theme
- ACF get_sub_field ALT TAG in the repeater doesn’t show
- WordPress Animation Adjustments
- theme directory fallback image outputs url and not the image
- Post Featured Image Custom Sizing?
- Getting post URL within custom content template
- Image cropping isn’t working correctly when using Offload Media
- How to add an image to a theme page template in code?
- Responsive Images with art direction
- Customizer Image-Picker Preview Not Working
- Uncaught Reference error in Retina.js
- Can’t upload images on new theme
- Images use & location, on new wordpress theme
- image sizes – finding and removing
- Adding a Class to an Getting From Post Content
- Strip HTML tags on custom code from the_content
- Create image with imagepng() (fails at header)
- Suppress the_content filter in a nested loop
- How do I keep images in posts below a certain size without editing the post?