WordPress Theme – Velocity
Please welcome our new free WordPress theme – Velocity. This is a vibrant, fully validated, 3-column theme with two widget enabled sidebars. The theme is fixed-width and suited for maximum readability. Here are some more features:-
- Trackbacks & comments separated.
- Stylized comments.
- Small size (90Kb)
- Web 2.0
- Wide content area.
- XHTML validated.

Any Feedback will be appreciated!



































Excellent, thank you that worked! I also made the same change to the index.php file in my theme directory.
Rolando – this is the code that should replace existing code in the Archives, Page, and Single Post templates:
<!– start sidebar one –>
<div id=”sidebar1″ class=”sidebar”>
<ul>
<?php /* Widgetized sidebar, if you have the plugin installed. */
if ( function_exists(‘dynamic_sidebar’) && dynamic_sidebar(2)) : else : ?>
<li id=”recent-posts”>
<h2><?php _e(‘Recent Posts’); ?></h2>
<ul>
<?php get_archives(‘postbypost’, ‘10′, ‘custom’, ‘<li>’, ‘</li>’); ?>
</ul>
</li>
<?php endif; ?>
</ul>
</div>
<!– end sidebar one –>
oh – duh. The comments script is not escaping the code. I’ll try to contact you via your website
Rolando – this is the code that should replace existing code in the Archives, Page, and Single Post templates:
<?php get_archives(‘postbypost’, ‘10′, ‘custom’, ”, ”); ?>
I couldn’t paste the code. Do you think you can just send me the updates to the files that need to be modified? Please. Thanks.
Sorry the code looks like this:
<?php get_archives('postbypost', '10', 'custom', '', ''); ?>
Thanks Bryan, but were do I put this code:
<?php get_archives(‘postbypost’, ‘10′, ‘custom’, ”, ”); ?>
and in what files and where. I tried different combinations, but nothing seems to work.
^^^ – I meant “display widgets in the left sidebar” not “display the left sidebar”
Rolando – the Archives, Page, and Single Post templates are missing the code required to display the left sidebar. You can copy the section of code you need from the Main Index Template – it’s well marked with begin sidebar and end sidebar comments.
Side note – the left sidebar is “Sidebar 1″ but it’s styled as dive id=”sidebar2″, and the right sidebar is “Sidebar 2″ but is styled as div id=”sidebar1″
-Bryan