Changeset 2376 for sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/page-home.php
- Timestamp:
- 01/26/2016 11:41:27 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/page-home.php
r1705 r2376 26 26 <a href="<?php echo $wpsc_url; ?>" class="wpsc-linkout"> 27 27 <?php echo str_replace( parse_url( $wpsc_url, PHP_URL_SCHEME ) . '://', '', untrailingslashit( $wpsc_url ) ); ?> 28 <span class="linkout-symbol"> ➲</span>28 <span class="linkout-symbol"><?php _ex( '➲', 'linkout symbol', 'wporg-showcase' ); ?></span> 29 29 </a> 30 30 <?php endif; // $wpsc_url ?> … … 35 35 ?> 36 36 <a class="wpsc-hero-learnmore" href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"> 37 Learn More →37 <?php _e( 'Learn More →', 'wporg-showcase' ); ?> 38 38 </a> 39 39 </div><!-- .wpsc-hero-slide-content --> … … 56 56 <?php query_posts( array( 'cat' => 4, 'posts_per_page' => 3, 'tag' => 'business', 'orderby' => 'rand' ) ); ?> 57 57 <?php if ( have_posts() ) : ?> 58 <h3> Featured Business Sites</h3>58 <h3><?php _e( 'Featured Business Sites', 'wporg-showcase' ); ?></h3> 59 59 <ul class="wpsc-recent"> 60 60 … … 79 79 <?php if ( have_posts() ) : ?> 80 80 81 <h3> Recently Added Sites</h3>81 <h3><?php _e( 'Recently Added Sites', 'wporg-showcase' ); ?></h3> 82 82 <ul class="wpsc-recent"> 83 83 … … 97 97 <?php endwhile; // have_posts ?> 98 98 </ul> 99 <a href="<?php echo home_url( '/archives/' ); ?>" class="wpsc-view-all"> View All Showcase Sites →</a>99 <a href="<?php echo home_url( '/archives/' ); ?>" class="wpsc-view-all"><?php _e( 'View All Showcase Sites →', 'wporg-showcase' ); ?></a> 100 100 101 101 <?php endif; // have_posts ?>
Note: See TracChangeset
for help on using the changeset viewer.