I have ridden a lot of about to cahnge tags H1 by H2 in single post but, I have a easel 2.07 theme installed in my blog wordpress, and i looked for the php file to change tags H2 by H1 in sibgle post, and i found in my single.php this:
if (have_posts()) {
while (have_posts()) : the_post();
easel_display_post();
endwhile;
} else { ?>
then i went to displaypost.php and found this:
if (!function_exists('easel_display_post_title')) {
function easel_display_post_title() {
global $post, $wp_query;
if ((easel_themeinfo('disable_page_titles') && is_page()) || (easel_themeinfo('disable_post_titles') && !is_page()) || (is_page('chat') || is_page('forum'))) return;
if (is_page()) {
$post_title = "<h2 class=\"page-title\">";
} else {
$post_title = "<h2 class=\"post-title\">";
}
if (is_home() || is_search() || is_archive() && !is_page()) $post_title .= "<a href=\"".get_permalink()."\">";
$post_title .= get_the_title();
if (is_home() || is_search() || is_archive() && !is_page()) $post_title .= "</a>";
$post_title .= "</h2>\r\n";
echo apply_filters('easel_display_post_title',$post_title);
}
}
I tried changing some tags, but it wasn't work.
Can you help me, please?
I'm sorry becuse my English isn't good enough, I hope wil understand me.
Thanks.