Hi guys
I've obviously goofed up my sidebar. Here's the message:
Parse error: syntax error, unexpected T_STRING in /home/ryans13/public_html/fortunefox/wp-content/themes/CordoboGrn/sidebar.php on line 77
Originally there was an error on line 87 and I thought I fixed it by removing the following line of code
<?php wp_list_bookmarks(); ?>
This is what I currently have in the PHP view: (starting from the begin sidebar text)
<!-- begin right sidebar -->
<div id="right">
<div class="links">
<ul>
<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar('Right Sidebar') ) : else : ?>
<!-- Author information is disabled per default. Uncomment and fill in your details if you want to use it.
<li><h2><?php _e('Author'); ?></h2>
<p>A little something about you, the author. Nothing lengthy, just an overview.</p>
</li>
-->
<li><h2><?php _e('Last Entries'); ?></h2>
<ul><?php get_archives('postbypost', '10', 'custom', '<li>', '</li>'); ?></ul>
</li>
<li><h2><?php _e('What's Hot!'); ?></h2>
</li>
<li><h2><?php _e('Hosting'); ?></h2>
<script src=http://www.hostmonster.com/src/js/fortunefox/CODE1/120x240/1.gif></script>
</li>
<li><h2><?php _e('Community'); ?></h2>
<script type="text/javascript" src="http://pub.mybloglog.com/comm2.php?mblID=2007081700322803&c_width=145&c_sn_opt=y&c_rows=7&c_img_size=f&c_heading_text=Recent+Readers&c_color_heading_bg=FF6633&c_color_heading=ffffff&c_color_link_bg=E3E3E3&c_color_link=00CC33&c_color_bottom_bg=FF3300"></script>
</li>
<li><h2><?php _e('Community'); ?></h2>
<script type="text/javascript" src="http://www.blogcatalog.com/w/recent.php?id=4303805&width=140&rows=10&bgcolor=EEEEEE&bcolor=33CC00&lcolor=FF0099&hcolor=FFFFFF&htext=Recent%10Viewers&name=1&img=s"></script>
</li>
<li><h2><?php _e('Archives'); ?></h2>
<ul><?php wp_get_archives('type=monthly'); ?></ul>
</li>
</div> <!-- /links -->
<div id="navi_end_right"> </div>
</div> <!-- end right sidebar -->
I can't see what I'm missing. I'm sure it's staring me right in the face.....but can anyone help?