饲料标题出现两次在wordpress响应主题cyberchimps

时间:2015-04-27 09:26:49

标签: php wordpress rss wordpress-theme-customize

我在responsive mobile theme cyberchimps使用wordpress 4.1。当我尝试从Feed中读取并在我的网站上显示帖子时,标题将显示两次。

我尝试从

更改feeds-rss.phpfeeds-rss2.php
<title><?php bloginfo_rss('name'); wp_title_rss(); ?></title>

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

但标题仍然出现两次。

网址为Here 有什么想法吗?

由于

@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(); ?>

感谢您的帮助。

由于

任何人都知道吗?

还没有?

2 个答案:

答案 0 :(得分:0)

我认为标题中的标题已更改。

重复的标题显示为

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

删除其中一个标题

答案 1 :(得分:0)

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

<style>
h2 {
display:none;
}
</style>
header.php中的

并清除了错误。

谢谢大家。