kriptap
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: More Posting toolsthanks!
Forum: Themes and Templates
In reply to: Need help with layoutGot it, thanks.
Forum: Themes and Templates
In reply to: Need help with layoutYes that’s it, but when I remove it I get errors becuase I am not remving it properly. Here is the code can you show me:
` <div id=”sidebar” class=”sidecol”>
-
<?php if ( function_exists(‘dynamic_sidebar’) && dynamic_sidebar() ) : else : ?>
-
<h2><?php _e(‘Search’); ?></h2>
<form id=”searchform” method=”get” action=”<?php bloginfo(‘siteurl’)?>/”>
<input type=”text” name=”s” id=”s” class=”textbox” value=”<?php echo wp_specialchars($s, 1); ?>” />
<input id=”btnSearch” type=”submit” name=”submit” value=”<?php _e(‘Go’); ?>” />
</form> - <h2><?php _e(‘Pages’); ?></h2>
<?php if(is_home()) {?><?php }?>
-
<?php wp_list_pages(‘title_li=’ ); ?>
-
<h2>
<?php _e(‘Categories’); ?>
</h2>
-
<?php wp_list_cats(‘optioncount=1&hierarchical=1’); ?>
<?php if(is_home()) get_links_list(); ?>
-
<h2>
<?php _e(‘Monthly’); ?>
</h2>
-
<?php wp_get_archives(‘type=monthly&show_post_count=true’); ?>
<?php if(is_home()) { ?>
- <h2>Other</h2>
-
<?php wp_register(); ?>
- <?php wp_loginout(); ?>
<?php wp_meta(); ?>
<?php } ?>
<?php endif; ?></div>
<div style=”clear:both;”></div>Thanks.