Making WordPress.org

Ticket #6338: fix-developer.diff

File fix-developer.diff, 2.5 KB (added by robfelty, 2 years ago)

Fix for the footers, to make the contribute box into a sidebar

  • wordpress.org/public_html/wp-content/themes/pub/wporg-developer/functions.php

    diff --git a/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/functions.php b/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/functions.php
    index e16931c25..e88b5e66b 100644
    a b function widgets_init() { 
    252252
    253253        register_sidebar( array(
    254254                'name'          => __( 'Landing Page Footer - Center', 'wporg' ),
     255                'id'            => 'landing-footer-3',
     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' ),
    255265                'id'            => 'landing-footer-2',
    256266                'description'   => __( 'Appears in footer of the primary landing page', 'wporg' ),
    257267                'before_widget' => '<div id="%1$s" class="widget box %2$s">',
  • wordpress.org/public_html/wp-content/themes/pub/wporg-developer/page-home-landing.php

    diff --git a/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/page-home-landing.php b/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/page-home-landing.php
    index 5e3262af0..35904dce5 100644
    a b get_header(); ?> 
    7373                                        <div class=" box"></div>
    7474                                <?php } ?>
    7575
    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>
     76                                <?php if ( is_active_sidebar( 'landing-footer-3') ) { ?>
     77                                        <?php dynamic_sidebar( 'landing-footer-3' ); ?>
     78                                <?php } else { ?>
     79                    <div class="box">
     80                        <h3 class="widget-title"><?php _e( 'Contribute', 'wporg' ); ?></h3>
     81                        <ul class="unordered-list no-bullets">
     82                            <li><a href="https://make.wordpress.org/" class="make-wp-link"><?php _e( 'Help Make WordPress', 'wporg' ); ?></a></li>
     83                        </ul>
     84                    </div>
     85                                <?php } ?>
     86
    8287
    8388                                <?php if ( is_active_sidebar( 'landing-footer-2') ) { ?>
    8489                                        <?php dynamic_sidebar( 'landing-footer-2' ); ?>