• http://webylife.com Nikunj

    super-awesome list was searching for many of the similar tutorials, thanks Paul you made it available on single post.

  • http://tweak2.com Gouri

    Very nice article. Thanks for sharing. :)

  • http://99points.info Zeeshan Rasool

    I am using some of these plug-ins and some are very necessary for any blog. good collection.
    :)

  • http://www.code-art.hu codee47

    Great article, thank you for sharing!

  • http://share-and-follow.com/ Andy Killen

    Please note that the Google Analytics video is out of date as Google have changed their placement of the google analytics code to be just before the end of the head section.

    This also means some new code needs to be used not the old one that went before the end body tag

    See the analytics site for more info.

  • http://www.inpixelitrust.fr/blog inpixelitrust

    Thanks a lot for this very usefull article. Using wordpress on a multilingual site, I scratch my head every days to find plugins that would behave nicely with WPML so I avoid using them as much as possible.

  • christian

    Yeah, awesome list !!!

    Exactly what I’m looking for !

  • http://www.jpoplive.com/ JPop

    Awesome!! Great tutorials :) Thanks a lot for this post, i bookmark it!

  • http://danielnoehr.com Daniel Nøhr

    Great article! – I’ve just recently begin to use WP, since I’ve been using ASP.net. It’s brilliant with some simple examples using PHP and WP.

    Thanks for sharing!

  • http://eraldmariano.com erald

    not only that this is a comprehensive collection but also a very useful one. bookmarked!

    thanks for sharing!

  • http://www.fenotype.nl Lourens

    You’re my hero, I can delete two plug-ins on my own website! =D

  • http://www.brainstormit.nl Ed

    Thanks for this really helpfull list. It’s easier if you can put those things in your own functions.php, just to avoid running to much plugins on your website. Great!

  • http://holywoodherald.co.uk/ Benet

    Great article, should reduce the plugin bloat nicely! Thank you!

  • Pingback: Web Design Weekly Articles Roundup | Blog CodeMyImage

  • Pingback: 20 things you can code that replaces a plugin | PressingWords

  • http://rolling-webdesign.com Theo

    Great list of useful tutorials, bookmarked, thanks!

  • Dutch

    This is a freakin’ awesome post for every WordPress geek

  • http://gopalbonline.com gopalb123

    Thanks paul,…awesome collections… Thanks again for sharing

  • Pingback: wpmag.com - WordPress News, Themes, Tutorials, Plugins, Questions, ...

  • Pingback: risorse&link | Art&Me

  • http://www.AlchemyUnited.com Mark @ Alchemy United

    Thanks. There goes my weekend :)

    • http://jonathanb.me Jonathan Búcaro

      Same here!!!, i dont know if im mad about that /confused

  • http://www.sandeepvaishnav.com/ Sandeep

    Awesome collections… Thanks for the share :)

  • Pingback: [Wordpress] 20 Plugin Replacing Tutorials, Tips, Snippets and Solutions for WordPress – プラグイン代替えとなるチュートリアルやTips - mBlog

  • http://www.speckygeek.com Pritam @ Specky Geek

    Nice collection. However, I don’t like the option of making change to the HTACCESS when I can easily do that using wp_head hook.

  • http://dinajpurinfo.com almamun

    Very useful post. Benet says rightly “should reduce the plugin bloat nicely!”

    Thanks Paul

  • http://endless.lv Martins

    bookmarked :) Thankyou.

  • Pingback: Samling af links januar 2010 – del 1 « FlagMag

  • http://penupdesigns.com Brad

    Thank you thank you thank you! This is a very helpful list of tutorials. Much appreciated.

  • Pingback: food for thought

  • http://tutopod.com tutopod

    wow… nice share… i love the way to make thumbnails without the plugins.. great job ma..

  • Pingback: 20 Helpful WordPress SQL Queries Snippets | Wbcom Designs | VAPDI

  • http://realitydodge.com RealityDodge

    Awesome List.

  • Pingback: Esta semana compartí:  | EV Correu 2.0

  • Friiitz

    That’s a great list you made there!

  • http://philkrnjeu.com Phil Krnjeu

    These are some great tricks.  As we know, a great amount of plugins will seriously slow down WordPress, and your tips and tricks are ninja like!

  • http://www.thelifeencounters.com/ Maricel Tan

    Oh goodness thanks for this list! :) I’ll be doing most likely all of them! Plugins can be great but sometimes I just dont know which one to choose from! ;)

  • MonkeyMays

    a great list! Thanks!!

  • http://twitter.com/wpKitchen wpKitchen

    Actually, for most developers plugins should be preferred over building functionality into individual themes. That placing a snippet of code in a theme file is more efficient than placing it in a plugin is debatable. The same code need to run no matter where it’s located. The slight overhead of having the WP API handling the plugin is not a big issue, especially with caching.

    If you know how to add these code snippets into a theme file, then you can also add them to a plugin. Just build your own plugins if you need to, if you find existing plugins too bloated.

    With plugins, developers who crank out many sites per year can more easily re-use these kinds of functionality across themes. It’s a big time saver, it provides for easy modular toggling individual functions on/off, and if you find out you need to update some code, you do it in one place, not in separate theme files across many client installs..

    so I would argue the other way: keep themes as bare bone a possible, stuff them with hooks, and use plug-ins *whenever you can*.  But don’t use bad, inefficient, insecure or bloated plug-ins of course.