Well, I couldn’t get it to work. I tried it with the “My Categories” widget, with the default “Categories” widget, any lastly without any category widget (of course nothing happened on the last one). The link continued to direct to the list posts by category page.
I have include my edited code for you to look at. What I was not sure about was replacing the second mention of “class=cat-item”. I used both “cat-item cat-item-29” and “cat-item-29” in the tests. Take a look over and let me know if you have any solutions.
If it all doesn’t work out then I can create a text widget, but it would be a nicer presentation to have the link within my categories.
<div id="sidebarLeft" class="sidebar">
<?php if ( !function_exists('dynamic_sidebar')
|| !dynamic_sidebar(1) ) : ?>
<h2><?php the_author_nickname(); ?></h2>
<ul>
<li><img src="<?php bloginfo('template_directory'); ?>/images/user.png" align="top" alt="About" /> <?php the_author_description(); ?></li>
<li><img src="<?php bloginfo('template_directory'); ?>/images/email.png" align="top" alt="Email" /> <a href="mailto:<?php the_author_email(); ?>" title="Email">Contact</a></li>
</ul>
<h2>New Posts <a href="feed:<?php bloginfo('rss2_url'); ?>"><img src="<?php bloginfo('template_directory'); ?>/images/feed.png" align="top" alt="Feed" /></a></h2>
<ul>
<?php query_posts('showposts=10'); ?>
<?php while (have_posts()) : the_post(); ?>
<li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>
<?php endwhile; ?>
</ul>
<h2>Credits</h2>
<ul>
<li><a href="https://cleavedesign.com" title="cleave design"><img src="<?php bloginfo('template_directory'); ?>/images/cleavedesign2.png" align="top" alt="cleave design" /></a></li>
</ul>
<h2>Categories</h2>
<ul><?php $categories = get_categories();
foreach ($categories as $cat) { ?>
<li class="cat-item">» <a href="<?= get_category_link( $cat->cat_ID ); ?>"><?= $cat->cat_name; ?></a> <?= '('.$cat->category_count.')' ?></li>
<?php } ?>
<li class="cat-item cat-item-29">» <a href="https://www.thegoldbrick.net/zenphoto">the GoLdBricK Gallery</a></li>
</ul>
<h2>Site Admin</h2>
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<?php wp_meta(); ?>
</ul>
<?php endif; ?>
</div>