Making WordPress.org

Changeset 10254


Ignore:
Timestamp:
09/12/2020 12:28:02 AM (4 years ago)
Author:
coreymckrill
Message:

WordPress.org Learn: Sync with GitHub

https://github.com/WordPress/learn/compare/81fc947c7f4f4174ef30a2f6c9fc42d3608e5a49...41d65294a2e67cf35a5b799d179f2e6f53b58b48

Location:
sites/trunk/wordpress.org/public_html/wp-content
Files:
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-learn/inc/taxonomy.php

    r10237 r10254  
    5353    $args   = array(
    5454        'labels'            => $labels,
    55         'hierarchical'      => false,
     55        'hierarchical'      => true,
    5656        'public'            => true,
    5757        'show_ui'           => true,
     
    136136    $args   = array(
    137137        'labels'            => $labels,
    138         'hierarchical'      => false,
     138        'hierarchical'      => true,
    139139        'public'            => true,
    140140        'show_ui'           => true,
     
    218218    $args   = array(
    219219        'labels'            => $labels,
    220         'hierarchical'      => false,
     220        'hierarchical'      => true,
    221221        'public'            => true,
    222222        'show_ui'           => true,
     
    259259    $args   = array(
    260260        'labels'            => $labels,
    261         'hierarchical'      => false,
     261        'hierarchical'      => true,
    262262        'public'            => true,
    263263        'show_ui'           => true,
     
    299299    $args = array(
    300300        'labels'            => $labels,
    301         'hierarchical'      => false,
     301        'hierarchical'      => true,
    302302        'public'            => true,
    303303        'rewrite'           => array(
     
    343343    $args = array(
    344344        'labels'            => $labels,
    345         'hierarchical'      => false,
     345        'hierarchical'      => true,
    346346        'public'            => true,
    347347        'show_ui'           => true,
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-learn-2020/front-page.php

    r10202 r10254  
    77 */
    88
    9 get_header();?>
     9get_header(); ?>
    1010
    1111    <main id="main" class="site-main home-page" role="main">
     
    6363
    6464        <?php get_template_part( 'template-parts/component', 'submit-idea-cta', array( 'icon' => 'lightbulb' ) ); ?>
    65 
    66         <?php if ( ! is_active_sidebar( 'front-page-blocks' ) ) : ?>
    67             <?php //get_template_part( 'template-parts/bbpress', 'front' ); ?>
    68         <?php else : ?>
    69             <div class="three-up helphub-front-page">
    70                 <?php dynamic_sidebar( 'front-page-blocks' ); ?>
    71             </div>
    72 
    73             <hr>
    74 
    75             <div id="helphub-forum-link" class="text-center">
    76                 <h3><?php esc_html_e( 'Support Forums', 'wporg-learn' ); ?></h3>
    77 
    78                 <p>
    79                     <span>
    80                         <?php esc_html_e( 'Can\'t find what you\'re looking for? Find out if others share your experience.', 'wporg-learn' ); ?>
    81                     </span>
    82 
    83                     <br>
    84 
    85                     <a href="<?php echo esc_url( site_url( '/forums/' ) ); ?>"><?php esc_html_e( 'Check out our support forums', 'wporg-learn' ); ?></a>
    86                 </p>
    87             </div>
    88         <?php endif; ?>
    89 
    9065    </main>
    9166
    92 <?php
    93 get_footer();
     67<?php get_footer();
Note: See TracChangeset for help on using the changeset viewer.