Hi,
Through the Admin> Appearances> Widget> Sidebar> Pages – Removing the ‘Title’ text results in the title ‘Pages’
on the Sidebar.php page, I’ve tried removing the code, but that results in an error ??
<div id="left_bar" class="sidebar">
<ul class="sidebar_list">
<?php
if (!function_exists('dynamic_sidebar') || !dynamic_sidebar(1)) : ?>
<li>
<ul>
<?php
query_posts('showposts=10');
if (have_posts()) :
while (have_posts()) : the_post(); ?>
<li><a href="<?php the_permalink() ?>"><?php the_title() ?></a></li>
<?php
endwhile;
endif; ?></ul>
</li>
<?php
endif; ?></ul>
</div>