Website Design and Development by Ed Nailor | EdNailor.com - The online version

Welcome to EdNailor.com

Ed Nailor... wishes

Yes, I wish I was there, but today I am not. So today, this is what's on my mind... Enjoy!

How Clean is Your Code?

WordPress theme developers… How clean is your code? Did you know that you can find out very easily? Simply enable the following line within your wp-config.php file, and you will see if your code is clean! define('WP_DEBUG', true); This will display WordPress warnings and notices. I recently did this and found a few issues on my main Framework I use for development. Not that there were a lot of issues, mind you, but here were a couple of the notices my theme had: Notice of Deprecated WordPress function: This notice / warning lets you know that one or more of the functions you are using in your...
read more

Using Sessions in WordPress

WordPress does not, by default, allow sessions. In a recent project, I needed to use sessions. So how do you use sessions in WordPress? Simple. Add the following line to your functions.php file within the open and close php tags, and you can then use sessions as needed. if ( !session_id() ) add_action( 'init', 'session_start'...
read more

Ocoee Whitewater Rafting June 2010

WoooHooo! On June 26, 2010 you will find me somewhere in the rapids of the Ocoee River in Tennessee. I am finally getting away to enjoy some whitewater rafting after a couple years of not being able to go. This is long over due and highly looked forward to! So please be advised, unless you too are on the river, I will be unavailable during the...
read more

OMG WP3

I just want to say, WordPress 3.0 is finally...
read more

WordPress 3.0 TinyMCE Editor Styling to Match Theme Style

Now you can control the styles of the WordPress content editor (TinyMCE) by using the following snippet in your functions.php file, and by adding an editor-style.css file to your...
read more

WordPress 3.0 Login Form

Very cool snippet to add a WordPress login form anywhere you want: <?php wp_login_form(); ?> More details @...
read more

« Previous Entries