如何让侧边栏首先出现在手机中?

时间:2013-05-04 16:07:47

标签: wordpress

如何在第二十一主题的内容之前首先显示侧边栏。

现在,如果我调整浏览器边栏的大小,那么我需要添加一个侧边栏来移动到第一位。

1 个答案:

答案 0 :(得分: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">