Making WordPress.org


Ignore:
Timestamp:
10/29/2014 12:44:51 AM (10 years ago)
Author:
coffee2code
Message:

Code Reference: widgetize primary landing page footer

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/page-home-landing.php

    r773 r948  
    7878            <div class="search-guide section light-gray clear">
    7979                <div class="inner-wrap three-columns">
     80
     81                    <?php if ( is_active_sidebar( 'landing-footer-1') ) { ?>
     82                        <?php dynamic_sidebar( 'landing-footer-1' ); ?>
     83                    <?php } else { ?>
     84                        <div class="widget box"></div>
     85                    <?php } ?>
     86
     87                    <?php if ( is_active_sidebar( 'landing-footer-2') ) { ?>
     88                        <?php dynamic_sidebar( 'landing-footer-2' ); ?>
     89                    <?php } else { ?>
     90                        <div class="widget box"></div>
     91                    <?php } ?>
     92
    8093                    <div class="widget box">
    81                         <h4 class="widget-title"><?php _e( 'Need Help?', 'devhub' ); ?></h4>
    82                         <ul class="unordered-list no-bullets">
    83                             <li><a href="#">WPHackers Mailing List</a></li>
    84                             <li><a href="#">WordPress Stack Exchange</a></li>
    85                             <li><a href="#">Core Contributor Handbook</a></li>
    86                         </ul>
    87                     </div>
    88                     <div class="widget box">
    89                         <h4 class="widget-title"><?php _e( 'More Resources', 'devhub' ); ?></h4>
    90                         <ul class="unordered-list no-bullets">
    91                             <li><a href="#">Intro To WordPress Development</a></li>
    92                             <li><a href="#">Setting Up Your Development Environment</a></li>
    93                             <li><a href="#">WordPress Coding Standards</a></li>
    94                         </ul>
    95                     </div>
    96                     <div class="widget box">
    97                         <h4 class="widget-title"><a href="#"><?php _e( 'Help Make WordPress ', 'devhub' ); ?><div class="dashicons dashicons-arrow-right-alt2"></div></a></h4>
     94                        <h4 class="widget-title"><a href="https://make.wordpress.org/"><?php _e( 'Help Make WordPress ', 'wporg' ); ?><div class="dashicons dashicons-arrow-right-alt2"></div></a></h4>
    9895                    </div>
    9996                </div>
    100             </div><!-- /search-guide -->
     97            </div>
    10198
    10299        </div><!-- /home-landing -->
Note: See TracChangeset for help on using the changeset viewer.