SEO

  • This is an issue only for larger blogs. If you’ve got less than 100 posts, you probably don’t need to worry about it at this stage.

    WordPress automatically saves a copy of your post every time you update it. If you’re like most people, some posts can have lots of versions before you’re happy with it.

    The versions come from every time you hit Update after the post has been published, as well as some auto-saves.

    On a large blog, this can seriously bloat the size of your database where the posts are stored. It’s made even worse if you tend to write long posts.

    This feature is there as a safety net, in case you mess up down the track and delete something important. It’s also great when you have multiple authors, so you can track who did what.

    Most of the time, these versions are redundant. How often do you go back to a post after you’ve published it and are happy with  it?

    To see

    Full article at WordPress Delete Article Revisions

    No Comments
  • Some time ago I did a post on how to use the WordPress Plugins Youtube Thumbnailer and WP Youtube together. Taking that one step further, what if you want to use your own thumnails for youtube videos, rather than the default ones?

    You can easily modify the Youtube Thumbnailer plugin to do this.

    You’ll need to name your own thumnails with the same name as the youtube shortcode they relate to.

    For example, if you want to use http://www.youtube.com/watch?v=MbiEMrqT1Q0 the shortcode would be MbiEMrqT1Q0

    You would name the picture you want to use as the thumbnail for that video: MbiEMrqT1Q0.jpg

    Upload it to your server in the usual way. All of the thumbnails must be stored in the same folder for this to work. I’m going to assume that folder it http://yourdomain.com/thumbnails/

    So your url for the thubmnail in this example would be http://yourdomain.com/thumbnails/MbiEMrqT1Q0.jpg

    Now to edit the plugin…

    On lines 109 and 151 of youtube_thumbnails_script.php, change where it says
    $img=”http://i2.ytimg.com/vi/{$match}/default.jpg”;
    to be
    $img=”http://yourdomain.com/thumbnails/{$match}.jpg”;
    where http://yourdomain.com/thumbnails/ is the folder for the thumbnails.

    * Note: I haven’t tested this out – it was a question from a reader, but I can’t see any reason why it wouldn’t work as stated. If you have any problems, or you can confirm it works

    Read more about this at Use Your Have Thumbnails As Opposed To Youtube’s Non-payment

    No Comments