Changeset 10169 for sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-learn-2020/front-page.php
- Timestamp:
- 08/13/2020 11:43:14 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-learn-2020/front-page.php
r10166 r10169 14 14 <a class="parallelogram workshop-ideas dashicons-before dashicons-slides" href="/workshops/"> 15 15 <p> 16 <strong><?php _e( 'Workshops', 'wporg-forums' ); ?></strong>16 <strong><?php esc_html_e( 'Workshops', 'wporg-learn' ); ?></strong> 17 17 <?php 18 _e( 'Workshops are a great way to get hands-on with WordPress. Here are some workshops for you to level up your WordPress skills.', 'wporg-learn' );18 esc_html_e( 'Workshops are a great way to get hands-on with WordPress. Here are some workshops for you to level up your WordPress skills.', 'wporg-learn' ); 19 19 ?> 20 <u><?php _e( 'Browse Workshops' ); ?></u>20 <u><?php esc_html_e( 'Browse Workshops', 'wporg-learn' ); ?></u> 21 21 </p> 22 22 </a> 23 23 <a class="parallelogram lesson-plans dashicons-before dashicons-clipboard" href="/lesson-plans/"> 24 24 <p> 25 <strong><?php _e( 'Lesson Plans', 'wporg-forums' ); ?></strong>25 <strong><?php esc_html_e( 'Lesson Plans', 'wporg-learn' ); ?></strong> 26 26 <?php 27 _e( 'Are you teaching WordPress to others? These lesson plans are designed to guide and inspire you to deliver great content.', 'wporg-learn' );27 esc_html_e( 'Are you teaching WordPress to others? These lesson plans are designed to guide and inspire you to deliver great content.', 'wporg-learn' ); 28 28 ?> 29 <u><?php _e( 'See the Lesson Plans' ); ?></u>29 <u><?php esc_html_e( 'See the Lesson Plans', 'wporg-learn' ); ?></u> 30 30 </p> 31 31 </a> … … 37 37 <div class="graphic"><span class="dashicons dashicons-welcome-learn-more"></span></div> 38 38 <div> 39 <h2 class="h3"><?php _e( 'Get Involved' ); ?></h2>40 <p><?php _e( 'Want to grow WordPress? As part of Training Team you could help others learn WordPress accross the world.' ); ?></p>41 <a href="https://make.wordpress.org/training/handbook/"><?php _e( 'Learn About The Training Team' ); ?></a>39 <h2 class="h3"><?php esc_html_e( 'Get Involved', 'wporg-learn' ); ?></h2> 40 <p><?php esc_html_e( 'Want to grow WordPress? As part of Training Team you could help others learn WordPress accross the world.', 'wporg-learn' ); ?></p> 41 <a href="https://make.wordpress.org/training/handbook/"><?php esc_html_e( 'Learn About The Training Team', 'wporg-learn' ); ?></a> 42 42 </div> 43 43 </div> … … 52 52 53 53 <?php 54 $args = array(55 'posts_per_page' => '3',56 );57 set_query_var( 'video-grid-options', $args );58 get_template_part( 'template-parts/component', 'video-grid' );54 $args = array( 55 'posts_per_page' => '3', 56 ); 57 set_query_var( 'video-grid-options', $args ); 58 get_template_part( 'template-parts/component', 'video-grid' ); 59 59 ?> 60 60 </section> 61 61 <hr> 62 62 63 63 <?php get_template_part( 'template-parts/component', 'submit-idea-cta', array( 'icon' => 'lightbulb' ) ); ?> 64 64 … … 73 73 74 74 <div id="helphub-forum-link" class="text-center"> 75 <h3><?php esc_html_e( 'Support Forums', 'wporg- forums' ); ?></h3>75 <h3><?php esc_html_e( 'Support Forums', 'wporg-learn' ); ?></h3> 76 76 77 77 <p> 78 78 <span> 79 <?php esc_html_e( 'Can\'t find what you\'re looking for? Find out if others share your experience.', 'wporg- forums' ); ?>79 <?php esc_html_e( 'Can\'t find what you\'re looking for? Find out if others share your experience.', 'wporg-learn' ); ?> 80 80 </span> 81 81 82 82 <br> 83 83 84 <a href="<?php echo esc_url( site_url( '/forums/' ) ); ?>"><?php esc_html_e( 'Check out our support forums', 'wporg- forums' ); ?></a>84 <a href="<?php echo esc_url( site_url( '/forums/' ) ); ?>"><?php esc_html_e( 'Check out our support forums', 'wporg-learn' ); ?></a> 85 85 </p> 86 86 </div>
Note: See TracChangeset
for help on using the changeset viewer.