提要标题在 wordpress 响应主题 cyberchimps 中出现两次

Feed title appearing twice in wordpress responsive theme cyberchimps

我在 wordpress 4.1 中使用 cyberchimpsresponsive mobile theme。当我尝试从提要中读取内容并在我的网站上显示 post 时,标题显示了两次。

我尝试将 feeds-rss.phpfeeds-rss2.php

更改为
<title><?php bloginfo_rss('name'); wp_title_rss(); ?></title>

<title><?php bloginfo_rss('name'); ?></title>

但是标题还是出现了两次。

url 是 Here 有什么想法吗 body?

谢谢

@Rohil_PHPBeginner

我的 archive.php 有这个作为内容,我不知道要编辑哪一行:

 *
 * @package      responsive_mobile
 * @license      license.txt
 * @copyright    2014 CyberChimps Inc
 * @since        0.0.1
 *
 * Please do not edit this file. This file is part of the responsive_mobile Framework and all modifications
 * should be made in a child theme.
 */

// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
        die;
}

get_header(); ?>

<div id="content-archive" class="content-area">
        <main id="main" class="site-main" role="main" itemprop="mainContentOfPage" itemscope="itemscope" itemtype="http://schema.org/Blog">

                <?php if ( have_posts() ) : ?>

                        <?php get_template_part( 'template-parts/loop-header' ); ?>

                        <?php /* Start the Loop */ ?>
                        <?php while ( have_posts() ) : the_post(); ?>

                                <?php
                                /* Include the Post-Format-specific template for the content.
                                 * If you want to override this in a child theme, then include a file
                                 * called content-___.php (where ___ is the Post Format name) and that will be used instead.
                                 */
                                get_template_part( 'template-parts/content', get_post_format() );
                                ?>

                        <?php endwhile; ?>

                        <?php responsive_mobile_paging_nav(); ?>

                <?php else : ?>

                        <?php get_template_part( 'template-parts/content', 'none' ); ?>

                <?php endif; ?>

        </main><!-- #main -->
        <?php get_sidebar(); ?>
</div><!-- #content-archive -->

<?php get_footer(); ?>

感谢您的帮助。

谢谢

有人知道吗?

还没有body?

我想 header 中的标题已更改。

重复的标题显示为

<h1>the text</h1> and below of it <h2>the text</h2>

删除其中一个 header

非常感谢大家。 我添加了以下代码

<style>
h2 {
display:none;
}
</style>

header.php 中,错误已清除。

谢谢大家