4 Steps to Apache with virtual host on Windows

A common question that seems to come up often is; how do I setup virtual host on apache. I’m going to show you how to do this on apache running on windows. It really is very simple.
I’m going to show you how you can do this in 5 minutes, and just 4 steps. Before we [...]

Wordpress Plugin: Twitter Blaster

Twitter Blaster is a plugin that will allow your visitors to post to your Twitter account.  Download Twitter Blasster
It’s very simple to use.

simply upload Twitter_Blaster.php to your plugin directory.
Activate it.
Set the option (Twitter usename and password.
Insert this code <?php TB_Twitt4me(); ?> into you index.php template file wherever you want. I would suggest right before <?php [...]

WordPress Plugin tutorial part 2 The Header

Ok so lets get started. create a file with your text editor. Add the following text to the very top of the file.
<?php
/*
Plugin Name: Author Plug
Plugin URI: http://MyBlogIt.net/plugins
Description: Displays a short bio and image for each author above or below each post.
Version: 0.5
Author: David Span
Author URI: http://davidspan.com/
*/
?>
Plugin Header
What we have just done is add our [...]

WordPress Plugin tutorial part 1 Planning

Before starting any new project it’s a very good ideal to do a little planning first. Building a WordPress plugin should be no different.
There are many ways to to plan out your project. I’ll outline a few for you here.
Flow chart:

Using a flow chart program or just drawing one up on a white board [...]