Fix typo and terminology in Twenty Eleven's header template. Props JarretC. Fixes #20442.
git-svn-id: http://svn.automattic.com/wordpress/trunk@20465 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
0706af654a
commit
4523ec1333
|
@ -116,7 +116,7 @@
|
||||||
<?php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff. */ ?>
|
<?php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff. */ ?>
|
||||||
<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>
|
<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>
|
||||||
<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>
|
<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>
|
||||||
<?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. */ ?>
|
<?php /* Our navigation menu. If one isn't filled out, wp_nav_menu falls back to wp_page_menu. The menu assigned to the primary location is the one used. If one isn't assigned, the menu with the lowest ID is used. */ ?>
|
||||||
<?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
|
<?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
|
||||||
</nav><!-- #access -->
|
</nav><!-- #access -->
|
||||||
</header><!-- #branding -->
|
</header><!-- #branding -->
|
||||||
|
|
|
@ -1081,7 +1081,7 @@ function register_post_type($post_type, $args = array()) {
|
||||||
* behave like edit_posts.
|
* behave like edit_posts.
|
||||||
* - publish_posts - Controls publishing objects of this post type.
|
* - publish_posts - Controls publishing objects of this post type.
|
||||||
* - read_private_posts - Controls whether private objects can be read.
|
* - read_private_posts - Controls whether private objects can be read.
|
||||||
|
*
|
||||||
* These four primitive capabilities are checked in core in various locations.
|
* These four primitive capabilities are checked in core in various locations.
|
||||||
* There are also seven other primitive capabilities which are not referenced
|
* There are also seven other primitive capabilities which are not referenced
|
||||||
* directly in core, except in map_meta_cap(), which takes the three aforementioned
|
* directly in core, except in map_meta_cap(), which takes the three aforementioned
|
||||||
|
|
Loading…
Reference in New Issue