Changeset 10945
- Timestamp:
- 04/16/2009 04:42:32 PM (17 years ago)
- Location:
- trunk
- Files:
-
- 9 edited
-
wp-content/themes/default/archive.php (modified) (1 diff)
-
wp-content/themes/default/footer.php (modified) (1 diff)
-
wp-content/themes/default/header.php (modified) (1 diff)
-
wp-content/themes/default/index.php (modified) (1 diff)
-
wp-content/themes/default/page.php (modified) (1 diff)
-
wp-content/themes/default/search.php (modified) (1 diff)
-
wp-content/themes/default/sidebar.php (modified) (3 diffs)
-
wp-content/themes/default/single.php (modified) (1 diff)
-
wp-includes/general-template.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/default/archive.php
r9577 r10945 8 8 ?> 9 9 10 <div id="content" class="narrowcolumn" >10 <div id="content" class="narrowcolumn" role="main"> 11 11 12 12 <?php if (have_posts()) : ?> -
trunk/wp-content/themes/default/footer.php
r8999 r10945 7 7 8 8 <hr /> 9 <div id="footer" >9 <div id="footer" role="contentinfo"> 10 10 <!-- If you'd like to support WordPress, having the "powered by" link somewhere on your blog is the best way; it's our only promotion or advertising. --> 11 11 <p> -
trunk/wp-content/themes/default/header.php
r10485 r10945 37 37 38 38 39 <div id="header" >39 <div id="header" role="banner"> 40 40 <div id="headerimg"> 41 41 <h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1> -
trunk/wp-content/themes/default/index.php
r9234 r10945 7 7 get_header(); ?> 8 8 9 <div id="content" class="narrowcolumn" >9 <div id="content" class="narrowcolumn" role="main"> 10 10 11 11 <?php if (have_posts()) : ?> -
trunk/wp-content/themes/default/page.php
r8999 r10945 7 7 get_header(); ?> 8 8 9 <div id="content" class="narrowcolumn" >9 <div id="content" class="narrowcolumn" role="main"> 10 10 11 11 <?php if (have_posts()) : while (have_posts()) : the_post(); ?> -
trunk/wp-content/themes/default/search.php
r9234 r10945 7 7 get_header(); ?> 8 8 9 <div id="content" class="narrowcolumn" >9 <div id="content" class="narrowcolumn" role="main"> 10 10 11 11 <?php if (have_posts()) : ?> -
trunk/wp-content/themes/default/sidebar.php
r9234 r10945 5 5 */ 6 6 ?> 7 <div id="sidebar" >7 <div id="sidebar" role="complementary"> 8 8 <ul> 9 9 <?php /* Widgetized sidebar, if you have the plugin installed. */ … … 48 48 <?php } ?> 49 49 50 </li> <?php }?> 51 50 </li> 51 <?php }?> 52 </ul> 53 <ul role="navigation"> 52 54 <?php wp_list_pages('title_li=<h2>Pages</h2>' ); ?> 53 55 … … 59 61 60 62 <?php wp_list_categories('show_count=1&title_li=<h2>Categories</h2>'); ?> 61 63 </ul> 64 <ul> 62 65 <?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?> 63 66 <?php wp_list_bookmarks(); ?> -
trunk/wp-content/themes/default/single.php
r10690 r10945 8 8 ?> 9 9 10 <div id="content" class="widecolumn" >10 <div id="content" class="widecolumn" role="main"> 11 11 12 12 <?php if (have_posts()) : while (have_posts()) : the_post(); ?> -
trunk/wp-includes/general-template.php
r10931 r10945 119 119 return; 120 120 121 $form = '<form method="get" id="searchform" action="' . get_option('home') . '/" >121 $form = '<form role="search" method="get" id="searchform" action="' . get_option('home') . '/" > 122 122 <div><label class="hidden" for="s">' . __('Search for:') . '</label> 123 123 <input type="text" value="' . attribute_escape(apply_filters('the_search_query', get_search_query())) . '" name="s" id="s" />
Note: See TracChangeset
for help on using the changeset viewer.