-1

Twenty Eleven テーマのコンテンツの前にサイドバーを最初に表示するにはどうすればよいですか。

ここで、ブラウザーのサイドバーのサイズを変更して最後に移動すると、サイドバーを追加してモバイルで最初に移動する必要があります。

4

1 に答える 1

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">
于 2013-05-05T08:16:24.317 に答える