• DONATE to NULLED!
    Вы можете помочь Форуму и команде, поддержать финансово.
    starwanderer - модератор этого раздела будет Вам благодарен!

Помощь дублирование h1 в заголовке сайта

xurd

Создатель
Регистрация
3 Июн 2011
Сообщения
15
Реакции
0
версия WordPress 3.2.1
All in One SEO Pack, RusToLat, WP Super Cache
Тема
Supercars1 by iioo

Тег h1 в заголовке сайта дублируется на остальные страницы ,сайты ,а названия других страниц идут с тегом h2
Как сделать так чтоб на остальных страницах сайта не отображалась Н1 заглавной и тег Н2 названия страницы, был изменен на Н1? Сайт состоит из СТРАНИЦ а не ЗАПИСЕЙ.

КОД ШАПКИ САЙТА

Код:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head profile="http://gmpg.org/xfn/11">

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />

<title><?php if (is_single() || is_page() || is_archive()) { ?><?php wp_title('',true); ?> | <?php } ?><?php bloginfo('name'); ?></title>


<link rel="stylesheet" href="http://www.pot****.ru/wp-content/themes/super_cars_1/style.css" type="text/css" media="screen" />



<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />

<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />

<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<?php wp_head(); ?>
<style type="text/css">
.spoiler_body {display:none;}
.spoiler_links {cursor:pointer;}
</style>
<script type="text/javascript"
src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
</head>

<body>



<div id="box">



<div id="top">

<div id="header"><h1><a href="<?php bloginfo('siteurl');?>/" title="<?php bloginfo('name');?>"><?php bloginfo('name');?></a></h1></div>

<div id="description"><?php bloginfo('description'); ?></div>

<div class="acc">
<div class="accordion title_block">
  <a href="" class="spoiler_links title_block"><span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span></a>
  <div class="spoiler_body ">
  <div class="rsidebar2">

<ul>

    <?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar(2) ) : else : ?>

    <li><h2>Последние комментарии</h2>

       

                     <?php

    global $wpdb;



    $sql = "SELECT DISTINCT ID, post_title, post_password, comment_ID,

    comment_post_ID, comment_author, comment_date_gmt, comment_approved,

    comment_type,comment_author_url,

    SUBSTRING(comment_content,1,30) AS com_excerpt

    FROM $wpdb->comments

    LEFT OUTER JOIN $wpdb->posts ON ($wpdb->comments.comment_post_ID =

    $wpdb->posts.ID)

    WHERE comment_approved = '1' AND comment_type = '' AND

    post_password = ''

    ORDER BY comment_date_gmt DESC

    LIMIT 10";

    $comments = $wpdb->get_results($sql);



    $output = $pre_HTML;

    $output .= "\n<ul>";

    foreach ($comments as $comment) {



    $output .= "\n<li>".strip_tags($comment->comment_author)

    .":" . "<a href=\"" . get_permalink($comment->ID) .

    "#comment-" . $comment->comment_ID . "\" title=\"on " .

    $comment->post_title . "\">" . strip_tags($comment->com_excerpt)

    ."</a></li>";



    }

    $output .= "\n</ul>";

    $output .= $post_HTML;



    echo $output;?>



   

            </li>

    <li><h2>Последние темы</h2>

        <ul>



<?php

$myposts = get_posts('numberposts=10&offset=1');

foreach($myposts as $post) :

?>

<li><a href="<?php the_permalink(); ?>"><?php the_title();

?></a></li>

<?php endforeach; ?>

   

        </ul>

        </li>

            </li>

    <li><h2>Мета</h2>

        <ul>

<?php wp_register(); ?>


<?php wp_meta(); ?>

        </ul>

        </li>


        <?php endif; ?>

        </ul>

</div>

</div></div></div>


</div> <!-- end top -->


<!-- end navbox -->
 
Если я вас правильно понял, то:
Код:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head profile="http://gmpg.org/xfn/11">

    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />

    <title><?php if (is_single() || is_page() || is_archive()) { ?><?php wp_title('',true); ?> | <?php } ?><?php bloginfo('name'); ?></title>


    <link rel="stylesheet" href="http://www.pot****.ru/wp-content/themes/super_cars_1/style.css" type="text/css" media="screen" />



    <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />

    <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />

    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <?php wp_head(); ?>
    <style type="text/css">
    .spoiler_body {display:none;}
    .spoiler_links {cursor:pointer;}
</style>
<script type="text/javascript"
src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
</head>

<body>



    <div id="box">



        <div id="top">

            <div id="header">
                <?php if (is_front_page() && is_home()) : ?>
                <h1><a href="<?php echo esc_url(home_url('/')); ?>" rel="home" title="<?php bloginfo('name');?>"><?php bloginfo('name');?></a></h1>
                <?php else : ?>
                <p><a href="<?php echo esc_url(home_url('/')); ?>" rel="home" title="<?php bloginfo('name');?>"><?php bloginfo('name');?></a></p>
                <?php endif; ?>
            </div>

            <div id="description"><?php bloginfo('description'); ?></div>

            <div class="acc">
                <div class="accordion title_block">
                  <a href="" class="spoiler_links title_block"><span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span></a>
                  <div class="spoiler_body ">
                      <div class="rsidebar2">

                        <ul>

                            <?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar(2) ) : else : ?>

                            <li><h2>Последние комментарии</h2>



                             <?php

                             global $wpdb;



                             $sql = "SELECT DISTINCT ID, post_title, post_password, comment_ID,

                             comment_post_ID, comment_author, comment_date_gmt, comment_approved,

                             comment_type,comment_author_url,

                             SUBSTRING(comment_content,1,30) AS com_excerpt

                             FROM $wpdb->comments

                             LEFT OUTER JOIN $wpdb->posts ON ($wpdb->comments.comment_post_ID =

                             $wpdb->posts.ID)

                             WHERE comment_approved = '1' AND comment_type = '' AND

                             post_password = ''

                             ORDER BY comment_date_gmt DESC

                             LIMIT 10";

                             $comments = $wpdb->get_results($sql);



                             $output = $pre_HTML;

                             $output .= "\n<ul>";

                                foreach ($comments as $comment) {



                                $output .= "\n<li>".strip_tags($comment->comment_author)

                                    .":" . "<a href=\"" . get_permalink($comment->ID) .

                                        "#comment-" . $comment->comment_ID . "\" title=\"on " .

                                        $comment->post_title . "\">" . strip_tags($comment->com_excerpt)

                                    ."</a></li>";



                                }

                            $output .= "\n</ul>";

                            $output .= $post_HTML;



                            echo $output;?>





                        </li>

                        <li><h2>Последние темы</h2>

                            <ul>



                                <?php

                                $myposts = get_posts('numberposts=10&offset=1');

                                foreach($myposts as $post) :

                                ?>

                                <li><a href="<?php the_permalink(); ?>"><?php the_title();

                                    ?></a></li>

                                    <?php endforeach; ?>



                                </ul>

                            </li>

                        </li>

                        <li><h2>Мета</h2>

                            <ul>

                                <?php wp_register(); ?>


                                <?php wp_meta(); ?>

                            </ul>

                        </li>


                        <?php endif; ?>

                    </ul>

                </div>

            </div></div></div>


        </div> <!-- end top -->


<!-- end navbox -->
Смотрите как я изменил код тайтла и с тегами H2 поступайте аналогичным образом (не нужно просто копировать - просто поймите принцип изменения, там все очень просто).
 
  • Нравится
Реакции: xurd
можете поправить файл пейдж, я нуль в этом...
Код:
<?php get_header(); ?>

    <div id="content">


        <?php if (have_posts()) : while (have_posts()) : the_post(); ?>

        <div class="post" id="post-<?php the_ID(); ?>">

          <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e('Permalink to'); ?> <?php the_title(); ?>"><?php the_title(); ?></a></h2>


            <?php the_content('<p class="serif">Подробнее &raquo;</p>'); ?>


            <?php wp_link_pages(array('before' => '<p><strong>Страницы:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>

        </div> <!-- end post -->

        <?php endwhile; endif; ?>

    </div> <!-- end content -->
   
<?php get_sidebar(); ?>

<?php get_footer(); ?>
 
Как то так:
Код:
<?php get_header(); ?>
    <div id="content">
        <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
        <div class="post" id="post-<?php the_ID(); ?>">
            <?php if (is_front_page() && is_home()) : ?>
            <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e('Permalink to'); ?> <?php the_title(); ?>"><?php the_title(); ?></a></h2>
            <?php else : ?>
            <h1><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e('Permalink to'); ?> <?php the_title(); ?>"><?php the_title(); ?></a></h1>
            <?php endif; ?>
            <?php the_content('<p class="serif">Подробнее &raquo;</p>'); ?>
            <?php wp_link_pages(array('before' => '<p><strong>Страницы:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
        </div> <!-- end post -->
        <?php endwhile; endif; ?>
    </div> <!-- end content -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
 
  • Нравится
Реакции: xurd
Назад
Сверху