Thank you Mike for your help. In my theme, I have both files, index.php and single.php
But none have the code you told me: <?php the_title( ‘<h3>’, ‘</h3>’ ); ?>
Here is what we find in the 2 files:
<strong>Index.php</strong>
<?php get_header(); ?>
<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; // gets current page number ?>
<?php if (is_home() && $paged < 2 && option::get('featured_enable') == 'on' ) { get_template_part('wpzoom', 'slider'); } // Featured Slideshow ?>
<?php if (is_home() && $paged < 2 && option::get('carousel_enable') == 'on' ) { get_template_part('wpzoom', 'carousel'); } // Horizontal Carousel ?>
<div id="content">
<?php if ( $paged < 2 && option::get('featured_art_show') == 'on') { // Featured Article
get_template_part('featured', 'post');
} ?>
<?php if ( $paged < 2 && option::get('featured_categories') == 'on') { // Home Categories
get_template_part('featured', 'categories');
} ?>
<?php if ( $paged > 1 || option::get('recent_posts') == 'on') { ?>
<div class="archiveposts">
<h3><?php echo option::get('recent_title'); ?></h3>
<?php
global $query_string; // required
/* Exclude categories from Recent Posts */
if (option::get('recent_part_exclude') != 'off') {
if (count(option::get('recent_part_exclude'))){
$exclude_cats = implode(",-", (array) option::get('recent_part_exclude'));
$exclude_cats = '-' . $exclude_cats;
$args['cat'] = $exclude_cats;
}
}
/* Exclude featured posts from Recent Posts */
if (option::get('hide_featured') == 'on') {
$featured_posts = new WP_Query(
array(
'post__not_in' => get_option( 'sticky_posts' ),
'posts_per_page' => option::get('slideshow_posts'),
'meta_key' => 'wpzoom_is_featured',
'meta_value' => 1
) );
while ($featured_posts->have_posts()) {
$featured_posts->the_post();
global $post;
$postIDs[] = $post->ID;
}
$args['post__not_in'] = $postIDs;
}
$args['paged'] = $paged;
if (count($args) >= 1) {
query_posts($args);
}
?>
<?php get_template_part('loop'); ?>
</div> <!-- /.archiveposts -->
<?php } ?>
</div> <!-- /#content -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
<strong>single.php</strong>
<?php get_header(); ?>
<?php $template = get_post_meta($post->ID, 'wpzoom_post_template', true); ?>
<div id="content"<?php if ($template == 'full') { echo " class=\"full-width\""; } ?>>
<div id="post-<?php the_ID(); ?>" <?php post_class(''); ?>>
<?php while (have_posts()) : the_post(); ?>
<div class="meta">
<?php if (option::get('post_category') == 'on') { ?><?php the_category(', '); ?><?php } ?>
<?php if (option::get('post_date') == 'on') { ?><?php if (option::get('post_category') == 'on') { ?> — <?php } ?><?php printf('%s at %s', get_the_date(), get_the_time()); ?><?php } ?>
<span><?php edit_post_link( __('Edit this post', 'wpzoom'), ' ', ''); ?></span>
</div>
<h1 class="title"><a>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1>
<?php if (option::get('post_author') == 'on') { ?><span class="author"><?php _e('by', 'wpzoom'); ?> <?php the_author_posts_link(); ?></span><?php } ?>
<div class="entry">
<?php the_content(); ?>
<div class="clear"></div>
</div>
<?php wp_link_pages( array( 'before' => '<div class="nextpage">' . __( 'Pages:', 'wpzoom' ) . '', 'after' => '</div>' ) ); ?>
<div class="after-meta">
<?php if (option::get('post_tags') == 'on') { ?><?php the_tags( '<div class="tags_list">'. __('Tags ', 'wpzoom'). '', '', '</div>'); ?><?php } ?>
<?php if (option::get('post_share') == 'on') { ?>
<div class="share_box">
<h4><?php _e('Share:', 'wpzoom') ?></h4>
<div class="share_btn"><a href="https://twitter.com/share">" class="twitter-share-button" data-count="horizontal">Tweet</a><script type="text/javascript" src="https://platform.twitter.com/widgets.js"></script></div>
<div class="share_btn"><iframe src="https://www.facebook.com/plugins/like.php?href=<?php echo urlencode(get_permalink($post->ID)); ?>&layout=button_count&show_faces=false&width=1000&action=like&font=arial&colorscheme=light&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:80px; height:21px;" allowTransparency="true"></iframe></div>
<div class="clear"></div>
</div>
<?php } ?>
</div>
<?php if (option::get('post_authorbio') == 'on') { ?>
<div class="post_author">
<?php echo get_avatar( get_the_author_meta('ID'), 70 ); ?>
<span><?php _e('Author:', 'wpzoom'); ?> <?php the_author_posts_link(); ?></span>
<?php the_author_meta('description'); ?>
</div>
<?php } ?>
<div id="comments">
<?php if (option::get('post_comments') == 'on') {
comments_template();
} ?>
</div> <!--/ #comments -->
<?php endwhile; wp_reset_query(); ?>
</div> <!-- /.post -->
</div><!-- /#content -->
<?php if ($template != 'full') { get_sidebar(); } ?>
<?php get_footer(); ?>
[Please be sure to use the code buttons or backticks when posting code on the forums]
I hope this will help you to understand my problem. Thank you.