Este es mi archivo Index.php no encuentro la referencia de title...
Código PHP:
<?php
global $options;
foreach ($options as $value) {
if (get_settings( $value['id'] ) === FALSE) { $$value['id'] = $value['std']; } else { $$value['id'] = get_settings( $value['id'] ); }
}
$dateformat = get_option('date_format');
$timeformat = get_option('time_format');
?>
<?php get_header(); ?>
<div id="frame">
<div id="content">
<div class="wrapper">
<?php if ($wpzoom_featured_posts_show == 'Yes' && is_home() && $paged < 2) { include(TEMPLATEPATH . '/wpzoom_featured_posts.php'); } ?>
<?php if ($wpzoom_featured_cats_show == 'Yes' && is_home() && $paged < 2) { include(TEMPLATEPATH . '/wpzoom_quick_categories.php'); } ?>
<div id="main">
<?php if ($wpzoom_featured_big_cats_show == 'Yes' && is_home() && $paged < 2) { include(TEMPLATEPATH . '/wpzoom_featured_categories.php'); } ?>
<?php if ($wpzoom_recent_posts_show == 'Yes') { include(TEMPLATEPATH . '/wpzoom_recent_posts.php'); } ?>
</div><!-- end #main -->
<div id="sidebar">
<?php get_sidebar(); ?>
</div><!-- end #sidebar -->
<div class="cleaner"> </div>
</div><!-- end .wrapper -->
</div><!-- end #content -->
</div><!-- end #frame -->
<?php get_footer(); ?>