本文整理汇总了PHP中roots_sidebar_inside_before函数的典型用法代码示例。如果您正苦于以下问题:PHP roots_sidebar_inside_before函数的具体用法?PHP roots_sidebar_inside_before怎么用?PHP roots_sidebar_inside_before使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了roots_sidebar_inside_before函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: roots_main_after
?>
</div>
</div><!-- /#main -->
<?php
roots_main_after();
?>
<?php
roots_sidebar_before();
?>
<aside id="sidebar" class="<?php
echo $roots_options['sidebar_class'];
?>
" role="complementary">
<?php
roots_sidebar_inside_before();
?>
<div class="container">
<?php
get_sidebar();
?>
</div>
<?php
roots_sidebar_inside_after();
?>
</aside><!-- /#sidebar -->
<?php
roots_sidebar_after();
?>
</div><!-- /#content -->
示例2: get_header
<?php get_header(); ?>
<?php roots_content_before(); ?>
<div id="content" class="<?php echo $roots_options['container_class']; ?>">
<?php roots_main_before(); ?>
<div id="main" class="<?php echo $roots_options['main_class']; ?>" role="main">
<div class="container">
<h1><?php _e('Latest Posts', 'roots');?></h1>
<?php get_template_part('loop', 'index'); ?>
</div>
</div><!-- /#main -->
<?php roots_main_after(); ?>
<?php roots_sidebar_before(); ?>
<aside id="sidebar" class="<?php echo $roots_options['sidebar_class']; ?>" role="complementary">
<?php roots_sidebar_inside_before(); ?>
<div class="container">
<?php get_sidebar(); ?>
</div>
<?php roots_sidebar_inside_after(); ?>
</aside><!-- /#sidebar -->
<?php roots_sidebar_after(); ?>
</div><!-- /#content -->
<?php roots_content_after(); ?>
<?php get_footer(); ?>