mirror of
https://ghproxy.net/https://github.com/AlxMedia/blogrow.git
synced 2025-08-26 06:36:25 +08:00
23 lines
No EOL
507 B
PHP
23 lines
No EOL
507 B
PHP
<?php
|
|
$sidebar = blogrow_sidebar_primary();
|
|
$layout = blogrow_layout_class();
|
|
if ( $layout != 'col-1c'):
|
|
?>
|
|
|
|
<div class="sidebar s1">
|
|
|
|
<div class="sidebar-content">
|
|
|
|
<?php if( is_page_template('page-templates/child-menu.php') ): ?>
|
|
<ul class="child-menu group">
|
|
<?php wp_list_pages('title_li=&sort_column=menu_order&depth=3'); ?>
|
|
</ul>
|
|
<?php endif; ?>
|
|
|
|
<?php dynamic_sidebar($sidebar); ?>
|
|
|
|
</div><!--/.sidebar-content-->
|
|
|
|
</div><!--/.sidebar-->
|
|
|
|
<?php endif; ?>
|