• Здравствуйте. Сервис Google сообщил об ошибке «Отсутствует: entry-title» Здесь http://alekseybelukhin.ru/ubiraem-oshibku-entry-title/ нашел объяснение моей проблеме, но теперь не могу найти требуемую функцию php the_title у себя на сайте в файле index.php. Помогите разобраться пожалуйста.

Просмотр 3 ответов — с 1 по 3 (всего 3)
  • думаю, вам будет проще помочь если вы выложите php файл с ошибкой, например post.php или page.php

    <?php get_header(); ?>
    
    <div id="site-content" class="clearfix">
    
    	<?php
    
    		// Front Page - Top of container
    		if(is_front_page() and is_active_sidebar('home-top_of_container')){
    			dynamic_sidebar('home-top_of_container');
    		}
    
    		// Page - Top of container
    		if(is_active_sidebar('page-top_of_container')){
    			dynamic_sidebar('page-top_of_container');
    		}
    
    	?>
    
    	<div id="site-content-column"><?php
    
    		if(have_posts()){ 
    
    			while(have_posts()){
    
    				the_post();
    
    				get_template_part( 'inc/template-parts/page', get_post_format() );
    
    			}				
    
    		 } ?> 
    
    	</div><?php
    
    	#
    	# 	SIDEBAR
    	# 	========================================================================================
    	#   Load the sidebar if needed
    	# 	========================================================================================
    	#
    	if(in_array(blt_get_option('sidebar_layout', 'right'), array('left', 'right'), true) or in_array(get_field('blt_sidebar'), array('left', 'right'), true)){
    		get_sidebar();
    	} ?>
    
    </div>
    
    <?php get_footer(); ?>

    Есть кто мог бы помочь разобраться?

Просмотр 3 ответов — с 1 по 3 (всего 3)
  • Тема «Отсутствует entry-title» закрыта для новых ответов.