Menu
- Manage all your WordPress Blogs easily using ManageWP.com
- Download SEO Doctor, our amazing SEO tool (and it's free!)
- Get SEO Smart Links, the Premium WordPress SEO plugin
- Check out my WordPress plugins, free WordPress themes or the list of Best New WordPress Plugins.
- Get a copy of my WordPress plugin development book
- Want to hire us? Check out our Services
Recent Articles
Recent Comments
- Chris DeSpain on Amazing Pictures of Landscapes 33 comment(s)
- Prasenjit @ Make Mon on WP Figlet 7 comment(s)
- corporate diary on SEO Friendly Images 311 comment(s)
- Farhan Rehman on If we can’t do that, then we ought’a go broke 1 comment(s)
- Tilo on 10 Online Services for Tracking Keyword Rankings in Search Engines 1 comment(s)
- Agencija on SEO Doctor – Free SEO Audit Tool 302 comment(s)
- Ivan on Top 6 reasons you should start playing the guitar 20 comment(s)
- Sindja on 40 million minutes 2 comment(s)
@vprelovac tweets
- Apple now worth more than Google and Microsoft combined http://t.co/aHgW6MHd via @zite 7 hours ago
- Chang Yung-Fa to Give Away His Billions http://t.co/xtLnUG8t via @zite 7 hours ago
- Double Fine Raises $1 Million for New Adventure Game http://t.co/Cpn8stKd via @zite 7 hours ago
- Don’t Build A Company To Sell, Build It To Last http://t.co/jV8FV1mo via @zite 8 hours ago
- The #1 VC in the World: Customers http://t.co/D3uv81Jq via @zite 8 hours ago
wordpress api
Improving security in WordPress plugins using Nonces
Using a nonce (number used once) is the best way to protect your plugin against a cross-site request forgery (CSRF) hacker-attack. Nonces are used on requests (saving options in admin, Ajax requests, performing an action etc) and prevent unauthorized access by providing a secret 'key' and checking it each time the code is used.
Do it Yourself: Optimize your WordPress Site Titles
The purpose of this article is to show technique and examples of optimizing your WordPress site titles by directly editing the theme header file, where the title tag is usually printed out.
By using this method you have greater control over the titles than any plugin can offer, so effectively you will be able to disable a plugin in the process, if you were using one (and one down is always good!).
Your title tag is usually found in header.php theme file.
Adding boxes to WordPress 2.5+ Write Post panel
I have noticed few inconsistencies in the WordPress 2.6.1 code regarding the methods to add content boxes to the WordPress Write Post panel.
The old way included usingadd_action('dbx_post_advanced', 'myplugin_old_custom_box' );
add_action('dbx_post_sidebar', 'myplugin_old_custom_box' );which would add a box to the Advanced section and Sidebar.
However since version 2.5 dbx_post_sidebar actually adds a box to the end of Advanced section not the sidebar.




Do it Yourself: Optimize your WordPress Page Headings