koholic
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: control widths on widgets columnHmm… I’m not sure, there are no dimensions in css. This is my sidebar.php:
<? // LEFT SIDEBAR ?>
<div id=”leftsidebar”>
<?php if ( function_exists(‘dynamic_sidebar’) && dynamic_sidebar(1) ) : else : ?>
- <h2>Recent entries</h2>
-
<?php
- “> <span><?php the_time(‘d.m.y’) ?> – </span><?php the_title() ?>
// I love zinruss studio
query_posts(‘showposts=8’);
?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?><?php endwhile; endif; ?>
</script>
- <h2>Menu</h2>
-
<?php wp_list_pages(‘title_li=’); ?>
- <h2>Categories</h2>
-
<?php wp_list_cats(‘sort_column=name&optioncount=1&hierarchical=0’); ?>
</script>
<script type=”text/javascript”
src=”http://pagead2.googlesyndication.com/pagead/show_ads.js”>
</script></div><?php endif; ?>
</div>
<? // END LEFT SIDEBAR ?><? // RIGHT SIDEBAR ?>
<div id=”rightsidebar”>- <h2><?php _e(‘Archives’); ?></h2>
<?php if ( function_exists(‘dynamic_sidebar’) && dynamic_sidebar(2) ) : else : ?>
-
<?php wp_get_archives(‘type=monthly’); ?>
<?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?>
<?php get_links_list(); ?>- <h2><?php _e(‘Meta’); ?></h2>
-
<?php wp_register(); ?>
- <?php wp_loginout(); ?>
- “><?php _e(‘Valid <abbr title=”eXtensible HyperText Markup Language”>XHTML</abbr>’); ?>
- “>Entries (RSS)
- “>Comments (RSS)
- “>WordPress
<?php wp_meta(); ?>
<?php } ?>
<?php endif; ?>
<!– Site Meter XHTML Strict 1.0 –>
<script type=”text/javascript” src=”http://sm5.sitemeter.com/js/counter.js?site=sm5koholic”>
</script>
<!– Copyright (c)2006 Site Meter –></div>
<? // END RIGHT SIDEBAR ?>What’s wrong?
Forum: Fixing WordPress
In reply to: about search enginesthanks a bunch!!!
Forum: Fixing WordPress
In reply to: about search enginesbut why are my descriptions on google still
“Just another WordPress blog” Hello world! February 17th, 2009. Welcome to WordPress. This is your first post. Edit or delete it,”
please help!