Here’s a quick way to do it, assuming $excerpt
has your excerpt you want to remove the first 3 words from
$excerpt = "the content starts this is the excerpt";
$words = explode(' ', $excerpt);
array_shift($words); // 1st word
array_shift($words); // 2nd word
array_shift($words); // 3rd word
$excerpt = implode(' ', $words);
It splits the excerpt into an array of words based on the space ‘ ‘, shifts the first 3 words off the array and recombines it back into a string.
Related Posts:
- Using wp_trim_excerpt to get the_excerpt() outside the loop
- How can i limit the character length in excerpt? [duplicate]
- How to include line-breaks in the_excerpt?
- How to control manual excerpt length?
- How to get the unfiltered excerpt, without […] or auto-excerpting
- Remove “Continue Reading” Link From the Teaser Excerpt Only
- excerpt in characters
- Modify youtube video size on one page and show another size on different page
- Limit the_excerpt in the first point (.) of the sentence
- Excerpts that don’t truncate words
- Spacing within the excerpt
- Custom Excerpt is returning 52 characters and not 52 words
- Disable WYSIWYG rich text editor only on post excerpt
- How to remove “Read on” content in the_excerpt?
- the_excerpt Read More Filter
- excerpt_length not working
- How to get the excerpts of all children pages
- Custom excerpt showing first paragraph (with HTML formatting)
- Empty excerpt using wp_get_recent_posts
- Different ‘read more’ links
- The excerpt: Display text OR image OR video
- Read More for Excerpt not working
- Twenty Fourteen: Change Read More text
- wp_trim_words is trimming by character instead of by words
- adjust the_excerpt based on template page
- First letter cutting off in excerpt
- How to display links in excerpt? [duplicate]
- Getting the_excerpt to link to child pages [closed]
- Getting first 20 words without excerpt
- Change excerpt length of first post
- Display oEmbed in the_excerpt
- Remove Text within Header tags in the Excerpt
- Line in excerpt and max 5 lines
- Include post title in readmore link?
- Excerpt using Read More Tag
- How to show post content before read more tag (excerpt) for password protected posts?
- How to apply excerpt length only on front end?
- get_the_excerpt() issues – returns the excerpt twice or not at all?
- Excerpt_length nor the_excerpt not working correctly
- Why is my excerpts not showing if not explicitly declared?
- How to change the length of excerpt() method?
- Add “Excerpt” in “Quick edit”
- Removing h3s in excerpt output?
- How to wrap “Read More” link in a DIV tag?
- Automatic excerpts
- how to get excerpt without p html tag from wordpress post
- How to properly show the Excerpt only if it exists?
- The excerpt doesn’t add Read more
- the_excerpt not displaying
- Text with special class as excerpt (or exclude special class)
- Display post excerpt instead of content, if available
- Add custom read more to the_excerpt and
- Remove [ and ] from excerpt
- Post excerpt in custom meta box… help with proper php format
- Is it possible to use words as starting and ending points of excerpt parameters?
- PHP Code in excerpt?
- How to replace get_the_excerpt with first N words of post article while stripping html
- Limiting the number of characters in the except
- Private Post BUT Public excerpt on Homepage
- My post excerpt does not work
- The excerpt suffix won’t go away
- Adding […] string for a custom excerpt function
- Make only the image an anchor link using the advanced excerpt plugin?
- Replace text in excerpt
- How to achieve two different excerpt types on one WordPress site?
- Manual excerpt length on recent posts slider
- Remove ‘read more’ link when post is shorter than excerpt
- Removing the […] from the excerpt returned by get_the_excerpt() only in some places
- Excerpt not alway available
- Continuum Theme – Excerpt length
- Prevent Advanced Excerpt from Being Called
- Reblog WordPress to another WordPress?
- How to enable excerpts just on the “Posts page”
- get_the_excerpt only returns one excerpt
- How to extract an excerpt from a specific page?
- Display Full Content Instead of Excerpt
- How to use limit post content on archive page in WordPress?
- Excerpt being limited too early
- Help needed using wp_trim_words
- modify text at the bottom of excerpt editor
- Excerpt of certain page to display on home page
- get_the_excerpt adding unwanted links to output html
- How to add a new line to an excerpt?
- Excerpt “Read More” link
- Force authors to use Manual Excerpt in WordPress and multiple Manual Excerpts
- Excerpt displays the current page excerpt not one being pulled
- Trimming breaks up markup
- WordPress excerpt with formatting and allowing selected tags
- Add rel=lightbox to custom string
- multiple excerpt length and styles
- how to use the_excerpt for two post queries?
- WordPress Post Format If Statement?
- Excerpt Problems
- Function to shorten string without cutting off last word
- How to show excerpt field
- Get the excerpt of post_content
- Get a raw value of excerpt
- Need to show post summary in sidebar
- Limited excerpt with readmore
- Is there a way to display the ‘Read more’ link if it’s within a range?