Blog

How to update all wordpress plugins at once

March 8th, 2010

There’s a way to upgrade all of your wordpress plug-ins at one time.  IF you have Wordpress 2.9.1 installed, you can do this. A shortcut way to get to this page is to go to:

http://www.yourdomain.com/wp-admin/update-core.php

Otherwise you may only find a link to this when you have a notification

Web Design Resources: March 4th through March 6th

March 6th, 2010

My latest delicious bookmarks related to web design, development, drupal, wordpress, seo, freelance, design, typography, css, jquery and the list goes on…

Web Design Resources: February 28th through March 2nd

March 2nd, 2010

My latest delicious bookmarks related to web design, development, drupal, wordpress, seo, freelance, design, typography, css, jquery and the list goes on…

Web Design Resources: February 22nd through February 25th

February 25th, 2010

My latest delicious bookmarks related to web design, development, drupal, wordpress, seo, freelance, design, typography, css, jquery and the list goes on…

Web Design Resources: February 17th through February 19th

February 19th, 2010

My latest delicious bookmarks related to web design, development, drupal, wordpress, seo, freelance, design, typography, css, jquery and the list goes on…

Web Design Resources: February 11th through February 14th

February 15th, 2010

My latest delicious bookmarks related to web design, development, drupal, wordpress, seo, freelance, design, typography, css, jquery and the list goes on…

Web Design Resources: February 9th through February 11th

February 11th, 2010

My latest delicious bookmarks related to web design, development, drupal, wordpress, seo, freelance, design, typography, css, jquery and the list goes on…

Web Design Resources: February 5th through February 9th

February 9th, 2010

My latest delicious bookmarks related to web design, development, drupal, wordpress, seo, freelance, design, typography, css, jquery and the list goes on…

Web Design Resources: February 3rd through February 5th

February 5th, 2010

My latest delicious bookmarks related to web design, development, drupal, wordpress, seo, freelance, design, typography, css, jquery and the list goes on…

How to create a sidebar navigation in Wordpress

February 3rd, 2010

Here’s a snippet that will give you an instant sidebar navigation in Wordpress. It grabs the post parent title and the children of that parent.

Download wordpress-sidebar-nav.txt

< ?php
$parent_title = get_the_title($post->post_parent);
$permalink = get_permalink($post->post_parent);
if($post->post_parent) {
$children = wp_list_pages('title_li=&child_of='.$post->post_parent.'&echo=0');
}
else {
$children = wp_list_pages('title_li=&child_of='.$post->ID.'&echo=0');
}
?>

< ?php if ($children): ?>


< ?php endif; ?>
  • Blog Home