mirror of
https://github.com/kennethreitz-archive/wordpress-skeleton.git
synced 2026-06-20 15:40:58 +00:00
23 lines
349 B
PHP
23 lines
349 B
PHP
<?php
|
|
/**
|
|
* @package WordPress
|
|
* @subpackage Default_Theme
|
|
*/
|
|
?>
|
|
<div id="sidebar">
|
|
<ul>
|
|
<?php /* Widgetized sidebar, if you have the plugin installed. */
|
|
if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?>
|
|
|
|
<?php wp_list_pages('title_li=' ); ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
<li>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
</div>
|
|
|