Ticket #10108: 10108.diff
| File 10108.diff, 4.4 KB (added by Denis-de-Bernardy, 3 years ago) |
|---|
-
wp-includes/general-template.php
121 121 return; 122 122 } 123 123 124 $form = '<form role="search"method="get" id="searchform" action="' . get_option('home') . '/" >124 $form = '<form method="get" id="searchform" action="' . get_option('home') . '/" > 125 125 <div><label class="screen-reader-text" for="s">' . __('Search for:') . '</label> 126 126 <input type="text" value="' . esc_attr(apply_filters('the_search_query', get_search_query())) . '" name="s" id="s" /> 127 127 <input type="submit" id="searchsubmit" value="'. esc_attr__('Search') .'" /> -
wp-content/themes/default/footer.php
6 6 ?> 7 7 8 8 <hr /> 9 <div id="footer" role="contentinfo">9 <div id="footer"> 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> 12 12 <?php bloginfo('name'); ?> is proudly powered by -
wp-content/themes/default/search.php
6 6 7 7 get_header(); ?> 8 8 9 <div id="content" class="narrowcolumn" role="main">9 <div id="content" class="narrowcolumn"> 10 10 11 11 <?php if (have_posts()) : ?> 12 12 -
wp-content/themes/default/index.php
6 6 7 7 get_header(); ?> 8 8 9 <div id="content" class="narrowcolumn" role="main">9 <div id="content" class="narrowcolumn"> 10 10 11 11 <?php if (have_posts()) : ?> 12 12 -
wp-content/themes/default/sidebar.php
4 4 * @subpackage Default_Theme 5 5 */ 6 6 ?> 7 <div id="sidebar" role="complementary">7 <div id="sidebar"> 8 8 <ul> 9 9 <?php /* Widgetized sidebar, if you have the plugin installed. */ 10 10 if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?> … … 50 50 </li> 51 51 <?php }?> 52 52 </ul> 53 <ul role="navigation">53 <ul> 54 54 <?php wp_list_pages('title_li=<h2>Pages</h2>' ); ?> 55 55 56 56 <li><h2>Archives</h2> -
wp-content/themes/default/page.php
6 6 7 7 get_header(); ?> 8 8 9 <div id="content" class="narrowcolumn" role="main">9 <div id="content" class="narrowcolumn"> 10 10 11 11 <?php if (have_posts()) : while (have_posts()) : the_post(); ?> 12 12 <div class="post" id="post-<?php the_ID(); ?>"> -
wp-content/themes/default/archive.php
7 7 get_header(); 8 8 ?> 9 9 10 <div id="content" class="narrowcolumn" role="main">10 <div id="content" class="narrowcolumn"> 11 11 12 12 <?php if (have_posts()) : ?> 13 13 -
wp-content/themes/default/single.php
7 7 get_header(); 8 8 ?> 9 9 10 <div id="content" class="widecolumn" role="main">10 <div id="content" class="widecolumn"> 11 11 12 12 <?php if (have_posts()) : while (have_posts()) : the_post(); ?> 13 13 -
wp-content/themes/default/header.php
36 36 <div id="page"> 37 37 38 38 39 <div id="header" role="banner">39 <div id="header"> 40 40 <div id="headerimg"> 41 41 <h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1> 42 42 <div class="description"><?php bloginfo('description'); ?></div>
