13 Rules for WordPress Plugin Development

It’s for a developer easy to criticize a plugin that has just been created, to find random security flaws or over-looked elements of the design that passed unnoticed through the testing phase. As much as I love developing plugins, I’m usually very nervous about other developers criticizing my work, especially in private emails to clients ;) I can spend hours creating all of these perfect features, only for another developer to come along and criticize something that I missed while I was concentrating on a million other things. Futuremore, WordPress plugin development is usually only handled by one developer, so that means you’re in charge of design, security, bug-checking and of adding new features. That sucks, because you’re directly responsible for all of that as well.

Continue reading

Share the Love
Get Free Updates

Simple WordPress Shortcode Generator and Some Useful Shortcodes

A lot of people like to use shortcodes in WordPress, because it allows them to type one small thing and have it expand into something much larger when they press publish. A web designer with a list of features he implements may have to type that out in various places in his website, but with shortcodes, he just needs to type [features] to have that all appear automatically. Many developers use this as well, to use bits of code that otherwise would be tedious to write out in full.
Continue reading

Share the Love
Get Free Updates

A Free Little WordPress Theme from PyThoughts

Hey guys,

Today I’d like to show you a theme that I made over the weekend for y’all :) It’s called Tranquilo

Preview Tranquilo

You can download it form the “Free Download” page in the demo.

Continue reading

Share the Love
Get Free Updates

The Quickest, Simplest and Prettiest Way to Add Social Bookmarking to Your WordPress Entries

First of all you need to download the buttons, so you can do that here.

Download Social Media Icons

You need to upzip that into your images folder, so that the path to them goes something like, “theme/images/(put ‘social-media’ folder here)/”

Then, in your entry.php and your single.php files, add the following code right under the “<?php the_content() ?>”:
Continue reading

Share the Love
Get Free Updates

How to Hide WordPress Info from Your Source Code

Includes how to rename wp-contentrename wp-admin, and remove the generator tag from WordPress.

Many people, particularly designers and web engineers for high-profiles websites, do not want users to know that they are running WordPress for their websites. For the sake of seeming like a more “hardcore” coder who doesn’t need a pre-built CMS (like, it kind of sucks when you find out that Facebook actually runs on WordPress :O ), or just for security reasons; it is a shame that it is so difficult to change the wp-content and wp-admin folder names very easily through the WordPress admin. This little tutorial will teach you how to do it in any case.

Continue reading

Share the Love
Get Free Updates

Tutorial: How I Made a Useful SEO Plugin for WordPress

There are two stats that I love to check for my web properties: the number of backlinks I have, and the Alexa rank of my site. Obviously, the number of backlinks that a webpage has is a large determinant of its rankings on search engines, and I love the Alexa rank tool, because it gives me a nice statistic to measure my progress. So I find myself going to Yahoo’s site-explorer tool a lot, and checking the Alexa tool on my Chrome browser. Since I check these stats as much as I visit my dashboard, however, I thought that it would be useful to display this information on my dashboard.

The problem was that I had never written a WordPress Plugin before.

Continue reading

Share the Love
Get Free Updates