Changeset 5151
- Timestamp:
- 03/31/2007 04:57:50 PM (18 years ago)
- Location:
- trunk/wp-content/themes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/classic/sidebar.php
r4762 r5151 4 4 5 5 <ul> 6 <?php /* Widgetized sidebar, if you have the plugin installed. */ 7 if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?> 6 8 <?php wp_list_pages('title_li=' . __('Pages:')); ?> 7 9 <?php wp_list_bookmarks('title_after=&title_before='); ?> … … 33 35 </ul> 34 36 </li> 37 <?php endif; ?> 35 38 36 39 </ul> -
trunk/wp-content/themes/default/functions.php
r4990 r5151 1 1 <?php 2 if ( function_exists('register_sidebar') ) 3 register_sidebar(array( 4 'before_widget' => '<li id="%1$s" class="widget %2$s">', 5 'after_widget' => '</li>', 6 'before_title' => '<h2 class="widgettitle">', 7 'after_title' => '</h2>', 8 )); 2 9 3 10 function kubrick_head() { -
trunk/wp-content/themes/default/sidebar.php
r5127 r5151 1 1 <div id="sidebar"> 2 2 <ul> 3 3 <?php /* Widgetized sidebar, if you have the plugin installed. */ 4 if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?> 4 5 <li> 5 6 <?php include (TEMPLATEPATH . '/searchform.php'); ?> … … 67 68 </li> 68 69 <?php } ?> 69 70 71 <?php endif; ?> 70 72 </ul> 71 73 </div>
Note: See TracChangeset
for help on using the changeset viewer.