Changeset 13025 for trunk/wp-content/themes/twentyten/functions.php
- Timestamp:
- 02/08/2010 06:02:23 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/twentyten/functions.php
r13012 r13025 4 4 $content_width = apply_filters('twentyten_content_width', 640 ); 5 5 6 // Your Changeable header business starts here 6 // Your Changeable header business starts here 7 7 // No CSS, just IMG call 8 8 define( 'HEADER_TEXTCOLOR', ''); … … 96 96 <?php comment_reply_link(array_merge( $args, array('depth' => $depth, 'max_depth' => $args['max_depth']))) ?> 97 97 </div> 98 </div> 98 </div> 99 99 100 100 <?php } else { ?> … … 179 179 'after_title' => '</h3>', 180 180 ) ); 181 181 182 182 // Area 2 183 183 register_sidebar( array ( 184 184 'name' => 'Secondary Widget Area', 185 'id' => 'secondary-widget-area', 185 'id' => 'secondary-widget-area', 186 186 'description' => __('The secondary widget area' , 'twentyten'), 187 187 'before_widget' => '<li id="%1$s" class="widget-container %2$s">', … … 190 190 'after_title' => '</h3>', 191 191 ) ); 192 192 193 193 // Area 3 194 194 register_sidebar( array ( 195 195 'name' => 'First Footer Widget Area', 196 'id' => 'first-footer-widget-area', 196 'id' => 'first-footer-widget-area', 197 197 'description' => __('The first footer widget area' , 'twentyten'), 198 198 'before_widget' => '<li id="%1$s" class="widget-container %2$s">', … … 200 200 'before_title' => '<h3 class="widget-title">', 201 201 'after_title' => '</h3>', 202 ) ); 202 ) ); 203 203 204 204 // Area 4 205 205 register_sidebar( array ( 206 206 'name' => 'Second Footer Widget Area', 207 'id' => 'second-footer-widget-area', 207 'id' => 'second-footer-widget-area', 208 208 'description' => __('The second footer widget area' , 'twentyten'), 209 209 'before_widget' => '<li id="%1$s" class="widget-container %2$s">', … … 211 211 'before_title' => '<h3 class="widget-title">', 212 212 'after_title' => '</h3>', 213 ) ); 213 ) ); 214 214 215 215 // Area 5 216 216 register_sidebar( array ( 217 217 'name' => 'Third Footer Widget Area', 218 'id' => 'third-footer-widget-area', 218 'id' => 'third-footer-widget-area', 219 219 'description' => __('The third footer widget area' , 'twentyten'), 220 220 'before_widget' => '<li id="%1$s" class="widget-container %2$s">', … … 222 222 'before_title' => '<h3 class="widget-title">', 223 223 'after_title' => '</h3>', 224 ) ); 224 ) ); 225 225 226 226 // Area 6 227 227 register_sidebar( array ( 228 228 'name' => 'Fourth Footer Widget Area', 229 'id' => 'fourth-footer-widget-area', 229 'id' => 'fourth-footer-widget-area', 230 230 'description' => __('The fourth footer widget area' , 'twentyten'), 231 231 'before_widget' => '<li id="%1$s" class="widget-container %2$s">', … … 233 233 'before_title' => '<h3 class="widget-title">', 234 234 'after_title' => '</h3>', 235 ) ); 236 235 ) ); 236 237 237 } // end theme_widgets_init 238 238
Note: See TracChangeset
for help on using the changeset viewer.