本文整理汇总了PHP中check_position_of_component函数的典型用法代码示例。如果您正苦于以下问题:PHP check_position_of_component函数的具体用法?PHP check_position_of_component怎么用?PHP check_position_of_component使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了check_position_of_component函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: get_template_part
get_template_part('content', 'page');
?>
<?php
comments_template('', true);
?>
<?php
}
// end of the loop.
?>
</div><!-- #content -->
<?php
if (check_position_of_component('menu', 'right', smartadapt_option('smartadapt_layout'))) {
get_template_part('section', 'menu');
}
//if menu is one the right side
?>
</div><!-- #main -->
</div><!-- #page -->
<?php
//add sidebar on the right side
if (check_position_of_component('sidebar', 'right', smartadapt_option('smartadapt_layout'))) {
get_sidebar();
}
?>
</div><!-- #wrapper -->
<?php
get_footer();
示例2: maxflat_searchform
<div class="row">
<div class="columns large-16 smartlib-toggle-area" id="toggle-search">
<?php
maxflat_searchform();
//display toggle form search
?>
</div>
</div>
</div>
</div>
<div id="wrapper" class="row">
<?php
//if sidebar is large-1 the left side
if (check_position_of_component('sidebar', 'left')) {
get_sidebar();
}
?>
<div id="page" role="main" class="<?php
echo get_class_of_component('page');
?>
">
<?php
maxflat_get_header();
//display header info or header image
maxflat_breadcrumb();
?>
<div id="main" class="row">
示例3: harmonux_list_pagination
?>
</div>
<?php
harmonux_list_pagination('nav-below');
?>
<?php
} else {
?>
<?php
get_template_part('views/content', 'none');
?>
<?php
}
?>
</main><!-- #main -->
</div><!-- #page -->
<?php
//add sidebar on the right side
if (check_position_of_component('sidebar', 'right')) {
get_sidebar();
}
?>
</div><!-- #wrapper -->
<?php
get_footer();
示例4: get_class_of_component
?>
<div id="page" role="main" class="<?php
echo get_class_of_component('page', smartadapt_option('smartadapt_layout'));
?>
">
<?php
smartadapt_header();
//display header info or header image
?>
<div id="main" class="row">
<nav id="mobile-navigation" class="columns sixteen show-for-small" role="navigation">
<?php
//if layout has vertical menu
if (smartadapt_option('smartadapt_layout') != 3) {
//display mobile menu
smartadapt_wp_nav_menu_select(array('theme_location' => 'categories'));
}
?>
</nav>
<?php
//if menu is one the left side
if (check_position_of_component('menu', 'left', smartadapt_option('smartadapt_layout'))) {
get_template_part('section', 'menu');
}
?>