它让我发疯,因为我不是代码高手,使用模板\\'submate\\'我试图在 children 主题优势上添加右侧边栏
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | <?php /** * This template displays full width pages with a page title. * * @package vantage * @since vantage 1.0 * @license GPL 2.0 * * Template Name: submate */ get_header(); ?> <?php //get the sidebar $avia_config['currently_viewing'] = 'page'; if(is_front_page()) { $avia_config['currently_viewing'] = 'frontpage'; } get_sidebar(); ?>
<?php if(function_exists('bcn_display')) { bcn_display(); }?> <?php while ( have_posts() ) : the_post(); ?> <?php get_template_part( 'content', 'page' ); ?> <?php endwhile; // end of the loop. ?> <?php get_footer(); ?> |
非常感谢您的帮助:)
原文地址:http://www.ccttoo.com/html/672.html
本文来自网络,不代表菜鸟教程之家立场,转载请注明出处。