Posted by Ed Nailor in WordPress
on Jun 17th, 2010 | 0 comments
I just want to say, WordPress 3.0 is finally...
Posted by Ed Nailor in WordPress
on Jun 16th, 2010 | 0 comments
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...
Posted by Ed Nailor in WordPress
on Jun 16th, 2010 | 0 comments
Very cool snippet to add a WordPress login form anywhere you want:
PHP
<?php wp_login_form(); ?>
1
<?php wp_login_form(); ?>
More details @...
Posted by Ed Nailor in WordPress
on Jun 16th, 2010 | 0 comments
Using the code below, you can allow your theme to set the default configuration for WP. Useful if you use the same theme as a framework a d do a lot of clean website installs.
PHP
function set_theme_defaults() {
$o = array(
'avatar_default' => 'blank',
'avatar_rating' => 'G',
'category_base' => '',
'comment_max_links' => 0,
'comments_per_page' => 0,
'date_format' => 'F j, Y',
...
Posted by Ed Nailor in WordPress
on Jun 16th, 2010 | 0 comments
WordPress 3.0 is just about to be launched to the public. As of this writing, RC3 is available, but from what I have read, the actual final version could come out as early as later today. I am looking forward to it, but as with anything new, there are new things to learn, adapt and implement. Over the next few days, I will be adding snipets of various articles I have read releated to the new changes within WP 3.0 and how to add them or use them within your new website.
I am not doing this to take credit for the information; rather this is for ME! My idea is to put all of this reference material in one...