Changeset 10254
- Timestamp:
- 09/12/2020 12:28:02 AM (4 years ago)
- 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 53 53 $args = array( 54 54 'labels' => $labels, 55 'hierarchical' => false,55 'hierarchical' => true, 56 56 'public' => true, 57 57 'show_ui' => true, … … 136 136 $args = array( 137 137 'labels' => $labels, 138 'hierarchical' => false,138 'hierarchical' => true, 139 139 'public' => true, 140 140 'show_ui' => true, … … 218 218 $args = array( 219 219 'labels' => $labels, 220 'hierarchical' => false,220 'hierarchical' => true, 221 221 'public' => true, 222 222 'show_ui' => true, … … 259 259 $args = array( 260 260 'labels' => $labels, 261 'hierarchical' => false,261 'hierarchical' => true, 262 262 'public' => true, 263 263 'show_ui' => true, … … 299 299 $args = array( 300 300 'labels' => $labels, 301 'hierarchical' => false,301 'hierarchical' => true, 302 302 'public' => true, 303 303 'rewrite' => array( … … 343 343 $args = array( 344 344 'labels' => $labels, 345 'hierarchical' => false,345 'hierarchical' => true, 346 346 'public' => true, 347 347 'show_ui' => true, -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-learn-2020/front-page.php
r10202 r10254 7 7 */ 8 8 9 get_header(); ?>9 get_header(); ?> 10 10 11 11 <main id="main" class="site-main home-page" role="main"> … … 63 63 64 64 <?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 90 65 </main> 91 66 92 <?php 93 get_footer(); 67 <?php get_footer();
Note: See TracChangeset
for help on using the changeset viewer.