Changeset 19599
- Timestamp:
- 12/16/2011 05:13:16 PM (13 years ago)
- Location:
- trunk/wp-content/themes
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/twentyeleven/header.php
r18335 r19599 112 112 <nav id="access" role="navigation"> 113 113 <h3 class="assistive-text"><?php _e( 'Main menu', 'twentyeleven' ); ?></h3> 114 <?php /* 114 <?php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff. */ ?> 115 115 <div class="skip-link"><a class="assistive-text" href="#content" title="<?php esc_attr_e( 'Skip to primary content', 'twentyeleven' ); ?>"><?php _e( 'Skip to primary content', 'twentyeleven' ); ?></a></div> 116 116 <div class="skip-link"><a class="assistive-text" href="#secondary" title="<?php esc_attr_e( 'Skip to secondary content', 'twentyeleven' ); ?>"><?php _e( 'Skip to secondary content', 'twentyeleven' ); ?></a></div> 117 <?php /* Our navigation menu. 117 <?php /* Our navigation menu. If one isn't filled out, wp_nav_menu falls back to wp_page_menu. The menu assiged to the primary position is the one used. If none is assigned, the menu with the lowest ID is used. */ ?> 118 118 <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?> 119 119 </nav><!-- #access --> -
trunk/wp-content/themes/twentyten/comments.php
r15145 r19599 4 4 * 5 5 * The area of the page that contains both current comments 6 * and the comment form. 6 * and the comment form. The actual display of comments is 7 7 * handled by a callback to twentyten_comment which is 8 8 * located in the functions.php file. -
trunk/wp-content/themes/twentyten/footer.php
r16480 r19599 4 4 * 5 5 * Contains the closing of the id=main div and all content 6 * after. 6 * after. Calls sidebar-footer.php for bottom widgets. 7 7 * 8 8 * @package WordPress -
trunk/wp-content/themes/twentyten/header.php
r17300 r19599 80 80 81 81 <div id="access" role="navigation"> 82 <?php /* 82 <?php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff */ ?> 83 83 <div class="skip-link screen-reader-text"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'twentyten' ); ?>"><?php _e( 'Skip to content', 'twentyten' ); ?></a></div> 84 <?php /* Our navigation menu. If one isn't filled out, wp_nav_menu falls back to wp_page_menu. The menu assiged to the primary position is the one used. If none is assigned, the menu with the lowest ID is used.*/ ?>84 <?php /* Our navigation menu. If one isn't filled out, wp_nav_menu falls back to wp_page_menu. The menu assiged to the primary position is the one used. If none is assigned, the menu with the lowest ID is used. */ ?> 85 85 <?php wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary' ) ); ?> 86 86 </div><!-- #access --> -
trunk/wp-content/themes/twentyten/loop-attachment.php
r19582 r19599 3 3 * The loop that displays an attachment. 4 4 * 5 * The loop displays the posts and the post content. 5 * The loop displays the posts and the post content. See 6 6 * http://codex.wordpress.org/The_Loop to understand it and 7 7 * http://codex.wordpress.org/Template_Tags to understand -
trunk/wp-content/themes/twentyten/loop-page.php
r15762 r19599 3 3 * The loop that displays a page. 4 4 * 5 * The loop displays the posts and the post content. 5 * The loop displays the posts and the post content. See 6 6 * http://codex.wordpress.org/The_Loop to understand it and 7 7 * http://codex.wordpress.org/Template_Tags to understand -
trunk/wp-content/themes/twentyten/loop-single.php
r19582 r19599 3 3 * The loop that displays a single post. 4 4 * 5 * The loop displays the posts and the post content. 5 * The loop displays the posts and the post content. See 6 6 * http://codex.wordpress.org/The_Loop to understand it and 7 7 * http://codex.wordpress.org/Template_Tags to understand -
trunk/wp-content/themes/twentyten/loop.php
r17469 r19599 3 3 * The loop that displays posts. 4 4 * 5 * The loop displays the posts and the post content. 5 * The loop displays the posts and the post content. See 6 6 * http://codex.wordpress.org/The_Loop to understand it and 7 7 * http://codex.wordpress.org/Template_Tags to understand
Note: See TracChangeset
for help on using the changeset viewer.