the best solution is to add filter in your functions.php :
add_filter('the_content','show_only_thumbnails',99);
function show_only_thumbnails($content){
if(is_home() && is_front_page()){
//quote from :
//http://wordpress.stackexchange.com/questions/218305/display-only-text-to-wordpress-loop-without-loosing-the-text-formatting/218314#218314
$content = preg_replace('/<iframe.*?>/', "", $content); // removes iframes
return $content;
}
return $content;
}
Related Posts:
- How set featured posts using checkbox in post edit screen?
- Do we still need to include a “if (have_posts())” in templates?
- Query *only* sticky posts
- Cannot access current post’s ID in custom plugin
- Can’t show comments count per post outside loop
- Show a list of recently viewed posts to a user
- Alternate custom content in the loop
- Showing random content / pictures from earlier posts in a sticky post?
- Auto Refresh Post List after X seconds
- Double count view in archive.php
- Group posts by year in loop
- Different style for most recent article
- Differentiate between posts and pages in search results
- Related posts loop based on tags AND categories doesn’t work without at least one tag assigned
- Loop through all product posts?
- get_next_post() and get_previous_post() return wrong posts
- Display post category in foreach loop with category link
- How To Get Posts With A Specific Word
- How to display posts on a static page? (like search loop)
- Why WP_Query(‘showposts=5’) shows only 1 post?
- Displaying Latest Posts on a Page
- Display all posts that were published before full post on single.php
- Two loops, one AJAX loop, exclude posts in first loop from second loop, loops are in different files
- problems with loading posts in a table-row
- Blog page pagination is not working after using the offset argument
- WP Query – Posts Per Page not working in combination with category__in
- More then one menu items are assigned with “current-menu-item” class
- How to add tags (custom taxonomy) to post class css?
- List authors with the last post title and order by last post date
- Listing Specific Categories from Current Post with Depth
- “Right Way” to make custom Loop respect reading settings inside admin panel?
- How to setup a query to output posts by groups of five?
- Only display sticky post or latest post in custom loop
- How to order posts in an arbitrary order?
- get_the_category listing in hierarchial order
- How to make a sum of all posts displayed in a loop
- Exclude current custom post on single post
- why does wordpress ignore the post args?
- First x post with another template then the others
- Loop doesn’t show title of second post and posts thereafter
- Grid post page on WordPress with Bootstrap, the_excerpt(); Problem
- Loop parent terms {display posts} AND loop child terms {display posts}
- add bootstrap post slider with tabs
- How to add add more properties to WP_Post object in search results loop
- Custom taxonomy archive page problem
- Loop don’t work within single.php page
- Add Blog to WP homepage Manually
- How to show all posts by author on buddypress profile with navigation
- Getting blog pagination to work on page set as front page
- Make loop inside slider divisible [closed]
- How to add automatically bootstrap 4 order-lg-1 and order-lg-2 classes for columns in foreach loop based on the count?
- separate the post of a category by subcategory
- How to display post list in a table layout (multiple queries in single loop)
- Not all posts showing in query
- how to handle the loop using filling bootstrap grid structure?
- Optimize CPT-function with a loop
- Display specific posts on home page
- The loop starting at a certain ID
- Limiting the amount of posts retrieved by the loop
- Display 3 posts with different HTML markup using a loop
- Changing wp_link_pages() to “Next Page” and “Previous Page” buttons?
- How to repeat a loop after 4 posts [duplicate]
- How to separate each individual blog post?
- Error while excluding a post from another loop (using its ID)
- Is there a way to define the $post var outside the loop?
- Only the most recent post is showing on my category page (working on localhost, not live site)
- Diffrent layout for posts [duplicate]
- show loop id post , only first id can read
- Can I Paginate Post after every 25 tag?
- Alternative content between posts no repetition
- Start loop from specific post ID
- Display new posts categories in separated divs
- Show post excerpt
- Wp_query loop is not working as it should
- Maximum number of posts per page before affecting performance?
- Display post order ranking within wordpress loop
- Problem with wp_insert_post()
- How to control Post view count incresing in sidebar widget posts too?
- WordPress loop uses unmodified posts array, why?
- Add row after three columns
- Modify WordPress loop after it has been run
- Skip posts, but keep posts per page
- show latest authors blog post
- Multiple Post Repeat for Related Post Loop by Category
- index.php is only displaying current month’s posts?
- Loop doesn’t display posts. It displays a link to the home page instead
- Grab next post title in archive page
- Where should get_post_meta() go to get $post->ID get_post_meta() is empty and $post->ID & get_the_id() are working
- Getting posts from multiple users?
- Loop through posts by each term and exclude duplicate posts assigned to several terms
- Show post if in category
- Displaying categories items among posts
- Only show posts with image and the correct ammount of posts in loop
- Related posts by searching post tags of single post as terms
- Redirecting posts in WordPress to a specific page
- Show all posts in category
- First post in loop displays twice
- Wrap every 2 posts
- What function does the loop of displaying posts?
- What template file is used by default for posts?