Changeset 1477 for sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-themes/header.php
- Timestamp:
- 04/15/2015 08:56:26 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-themes/header.php
r1406 r1477 6 6 */ 7 7 8 $GLOBALS['pagetitle'] = __( 'Theme Directory « Free WordPress Themes', 'wporg-themes' ); 8 9 9 $GLOBALS['pagetitle'] = wp_title( '«', false, 'right' );10 10 require WPORGPATH . 'header.php'; 11 11 ?> … … 13 13 <div id="headline"> 14 14 <div class="wrapper"> 15 <h2 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' );?></a></h2>15 <h2 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php _e( 'Theme Directory', 'wporg-themes' ) ?></a></h2> 16 16 </div> 17 17 </div> 18 18 <nav id="site-navigation" class="main-navigation" role="navigation"> 19 <?php 20 wp_nav_menu( array( 21 'theme_location' => 'primary', 22 'container' => false, 23 'depth' => 1, 24 ) ); 25 ?> 19 <ul id="menu-theme-directory" class="menu"> 20 <li><a href="<?php echo home_url( '/commercial/' ); ?>"><?php _e( 'Commercial Themes', 'wporg-themes' ); ?></a></li> 21 <li><a href="<?php echo home_url( '/getting-started/' ); ?>"><?php _e( 'Upload Your Theme', 'wporg-themes' ); ?></a></li> 22 </ul> 26 23 </nav>
Note: See TracChangeset
for help on using the changeset viewer.