-1

如何使侧边栏出现在 21 主题中的内容之前。

现在,如果我调整浏览器侧边栏的大小到最后,我需要添加一个侧边栏才能在 Mobile 中先行。

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 回答