я использую responsive mobile theme
от cyberchimps
в wordpress 4.1
, Когда я пытаюсь прочитать из ленты и показать сообщение на моем сайте, заголовок отображается дважды.
Я пытался изменить feeds-rss.php
а также feeds-rss2.php
от
<title><?php bloginfo_rss('name'); wp_title_rss(); ?></title>
в
<title><?php bloginfo_rss('name'); ?></title>
но название все еще появляется дважды.
URL-адрес Вот
Любая идея, любое тело?
Спасибо
@Rohil_PHPBeginner
Мой архив.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(); ?>
Помощь приветствуется.
Спасибо
Любая идея кто-нибудь?
Еще никто?
Я полагаю, заголовок в заголовке изменен.
дублированный заголовок отображается как
<h1>the text</h1> and below of it <h2>the text</h2>
удалить один из заголовков
Большое спасибо всем.
Я добавил следующий код
<style>
h2 {
display:none;
}
</style>
в header.php
и ошибка устранена.
Спасибо вам всем.