2013-05-04 9 views

ответ

0

Найдите <?php get_sidebar(); ?> в вашем файле шаблона и переместите его в начало страницы. Так, например, когда вы смотрите на index.php, вы получаете это:

<?php 
/** 
* The main template file. 
* 
* This is the most generic template file in a WordPress theme 
* and one of the two required files for a theme (the other being style.css). 
* It is used to display a page when nothing more specific matches a query. 
* E.g., it puts together the home page when no home.php file exists. 
* Learn more: http://codex.wordpress.org/Template_Hierarchy 
* 
* @package WordPress 
* @subpackage Twenty_Eleven 
*/ 

get_header(); ?> 
<?php get_sidebar(); ?> 

    <div id="primary"> 
     <div id="content" role="main"> 
+0

Я сделал. Но после этого он доходит до конца страницы. – user2322509

Смежные вопросы