Site News: 01.14.09 (code)
Posted on Wednesday, 01.14.09 at 12:37 in
Site News
- We added three new widgets to the side bars: a poll, a count of current visitors, and site statistics.
- The site map was updated to include the new plugins.
- We modified the theme’s core code to remove titles in the page headings.
From INDEX.PHP:
<!– Post Headline –>
<?php if(!is_page()) { ?> <!———-Added this line——->
<div class=”post-headline”>
<h2><?php
if( !is_single() AND !is_page() ) { ?>
<a href=”<?php the_permalink() ?>” rel=”bookmark” title=”Permanent Link to <?php
if (function_exists(‘the_title_attribute’)) {
the_title_attribute();
}
elseif (function_exists(‘the_title’)) {
the_title();
} ?>”><?php
} the_title();
if( !is_single() AND !is_page() ) { ?>
</a><?php
} ?>
</h2>
</div>
<?php } ?> <!———-Added this line——->