Digg 3 Columns About Tab
20 Oct 2007Quick note to the WP-Designer / Small Potato fans using his wonderful Digg 3 columns theme (as this blog is) -- if you are having trouble getting the "About" tab working, it is probably because your about static page doesn't have the permalink id of "2", and unfortunatly the wordpress function get_permalink() only takes an ID and not a name
Simply edit wp-conten/themes/header.php and change the following line to something appropriate:
<li><a href="<?php echo get_permalink(2); ?>" title="<?php e('About'); ?>"><?php e('About'); ?></a></li>
To learn more about the wordpress function, read here.
Hope this helps.