X

Better SEO Automatically Remove Short Words From URL

Snippets by IsItWP

Are you looking for a way to remove stop words from your URLs? While there’s probably a plugin for this, we have created a quick code snippet that you can use to improve the SEO by automatically removing short words from URL in WordPress.

Instructions:

All you have to do is add this code to your theme’s functions.php file or in a site-specific plugin:

add_filter('sanitize_title', 'remove_short_words');

function remove_short_words($slug) {
    if (!is_admin()) return $slug;
    $slug = explode('-', $slug);
    foreach ($slug as $k => $word) {
        if (strlen($word) < 3) {
            unset($slug[$k]);
        }
    }
    return implode('-', $slug);
}

Note: If this is your first time adding code snippets in WordPress, then please refer to our guide on how to properly add code snippets in WordPress, so you don’t accidentally break your site.

If you liked this code snippet, please consider checking out our other articles on the site like: 11 best WordPress quiz plugins and how to set up author tracking in WordPress with Google Analytics.

Comments   Leave a Reply

  1. Hello friend,
    How to remove only certain words from slug?
    Thanks a lot

    1. You could try using this, replaceing “word” with the word you which to remove:

      if ($word === “word”) {
      unset($slug[$k]);
      }

  2. Boost Your WordPress SEO with Short URLs - WPMU.org September 6, 2013 at 5:50 pm

    […] to Kevin Chard for these awesome […]

  3. Well the idea is that if you remove words like “The, and, but, is, it,” etc, since they don’t have any real SEO value. However the above snippet was updated to remove only a list of words rather then all words with 3 characters or less.

    http://wpsnipp.com/index.php/functions-php/better-seo-automatically-remove-stop-words-from-slug/

  4. Peerland Fire Alarm August 5, 2011 at 12:11 pm

    I am a newbie in SEO field recently I was told to collect some new information and guess what,I gave them your idea and they really liked it.So in other words your advice save me.Thanks man!Really  nice one.People please try this.

    1. You should take a look at this snippet. This is an updated version of the snippet above.
      http://wpsnipp.com/index.php/functions-php/better-seo-automatically-remove-stop-words-from-slug/

  5. Alexandre M. Cajaty July 14, 2011 at 5:09 pm

    Congratulations for the post!

    I adapted your code with a list of negative words separated by commas.

    Hug!****add_filter(‘sanitize_title’, ‘remove_short_words’);function remove_short_words($slug) {    if (!is_admin()) return $slug;    $slug = explode(‘-‘, $slug);    foreach ($slug as $k => $word) { //keywords false $keys_false = ‘a,ao,aos,as,ate,da,de,do,das,dos,dum,duma,e,em,es,na,no,nas,nos,num,numa,o,os,que,um,uma’; $keys = explode(‘,’, $keys_false); foreach ($keys as $l => $wordfalse) { if ($word==$wordfalse) { unset($slug[$k]); } }    }    return implode(‘-‘, $slug);}

    1. Great snippet Alexandre. Email me so I can  set you up as an author for the snippet.
      http://wpsnipp.com/index.php/contact/

  6. Trieu Quang Khanh June 24, 2011 at 3:29 am

    this is bad for vietnamese

    1. This is true Trieu Quang Khan, I’m going to publish an updated version that will let users define words that will get removed from the slug. 

      1. Trieuquangkhanh July 19, 2011 at 7:12 am

        Great.

  7. Does it exclude 3 letter words? The write up implies it does by including the words but and and, but the screenshot shows seo still there in the URL? Presume it is the condition in line 6 that needs changing. Could removing 3 letter words be too drastic as it could remove words required for the URL to make sense? who, cup, bar, win, end, seo(!) etc.. (which could then have a negative rather than positive effect on seo?)
    Cheers.
    David.

    1. This is true, one modification I could do to this snippet would be to create a list of words that it should remove. This way it would not remove words that may be important to the SEO of the site.

  8. Do you think this is important for SEO? Why?

    Thanks
    Teo

    1. The more words you have in the URL Google will weight what could be important words less. Since the if, and, the, is, are, etc are not as important as other words this script will remove them.

Add a Comment

We're glad you have chosen to leave a comment. Please keep in mind that all comments are moderated according to our privacy policy, and all links are nofollow. Do NOT use keywords in the name field. Let's have a personal and meaningful conversation.

WordPress Launch Checklist

The Ultimate WordPress Launch Checklist

We've compiled all the essential checklist items for your next WordPress website launch into one handy ebook.
Yes, Send Me the Free eBook!