Changeset 11903
- Timestamp:
- 06/03/2022 04:31:06 PM (2 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/functions.php
r11901 r11903 254 254 'name' => __( 'Landing Page Footer - Center', 'wporg' ), 255 255 'id' => 'landing-footer-2', 256 'description' => __( 'Appears in footer of the primary landing page', 'wporg' ), 257 'before_widget' => '<div id="%1$s" class="widget box %2$s">', 258 'after_widget' => '</div>', 259 'before_title' => '<h4 class="widget-title">', 260 'after_title' => '</h4>', 261 ) ); 262 263 register_sidebar( array( 264 'name' => __( 'Landing Page Footer - Right', 'wporg' ), 265 'id' => 'landing-footer-3', 256 266 'description' => __( 'Appears in footer of the primary landing page', 'wporg' ), 257 267 'before_widget' => '<div id="%1$s" class="widget box %2$s">', -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/page-home-landing.php
r9325 r11903 71 71 <?php dynamic_sidebar( 'landing-footer-1' ); ?> 72 72 <?php } else { ?> 73 <div class=" 73 <div class="box"></div> 74 74 <?php } ?> 75 76 <div class="box">77 <h3 class="widget-title"><?php _e( 'Contribute', 'wporg' ); ?></h3>78 <ul class="unordered-list no-bullets">79 <li><a href="https://make.wordpress.org/" class="make-wp-link"><?php _e( 'Help Make WordPress', 'wporg' ); ?></a></li>80 </ul>81 </div>82 75 83 76 <?php if ( is_active_sidebar( 'landing-footer-2') ) { ?> 84 77 <?php dynamic_sidebar( 'landing-footer-2' ); ?> 85 78 <?php } else { ?> 86 <div class=" box"></div> 79 <div class="box"></div> 80 <?php } ?> 81 82 <?php if ( is_active_sidebar( 'landing-footer-3') ) { ?> 83 <?php dynamic_sidebar( 'landing-footer-3' ); ?> 84 <?php } else { ?> 85 <div class="box"></div> 87 86 <?php } ?> 88 87
Note: See TracChangeset
for help on using the changeset viewer.