Changeset 9234
- Timestamp:
- 10/17/2008 08:39:56 PM (17 years ago)
- Location:
- trunk
- Files:
-
- 1 deleted
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/default/archive.php
r9226 r9234 64 64 else 65 65 echo("<h2 class='center'>No posts found.</h2>"); 66 include (TEMPLATEPATH . '/searchform.php');66 get_search_form(); 67 67 68 68 endif; -
trunk/wp-content/themes/default/archives.php
r8999 r9234 13 13 <div id="content" class="widecolumn"> 14 14 15 <?php include (TEMPLATEPATH . '/searchform.php'); ?>15 <?php get_search_form(); ?> 16 16 17 17 <h2>Archives by Month:</h2> -
trunk/wp-content/themes/default/index.php
r8999 r9234 35 35 <h2 class="center">Not Found</h2> 36 36 <p class="center">Sorry, but you are looking for something that isn't here.</p> 37 <?php include (TEMPLATEPATH . "/searchform.php"); ?>37 <?php get_search_form(); ?> 38 38 39 39 <?php endif; ?> -
trunk/wp-content/themes/default/search.php
r8999 r9234 38 38 39 39 <h2 class="center">No posts found. Try a different search?</h2> 40 <?php include (TEMPLATEPATH . '/searchform.php'); ?>40 <?php get_search_form(); ?> 41 41 42 42 <?php endif; ?> -
trunk/wp-content/themes/default/sidebar.php
r8999 r9234 10 10 if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?> 11 11 <li> 12 <?php include (TEMPLATEPATH . '/searchform.php'); ?>12 <?php get_search_form(); ?> 13 13 </li> 14 14 -
trunk/wp-includes/general-template.php
r9097 r9234 92 92 if ('' == locate_template($templates, true)) 93 93 load_template( get_theme_root() . '/default/sidebar.php'); 94 } 95 96 function get_search_form() { 97 do_action( 'get_search_form' ); 98 99 if ( '' != locate_template(array('searchform.php'), true) ) 100 return; 101 102 $form = '<form method="get" id="searchform" action="' . get_option('siteurl') . '/" > 103 <label class="hidden" for="s">' . __('Search for:') . '</label> 104 <div><input type="text" value="' . the_search_query() . '" name="s" id="s" /> 105 <input type="submit" id="searchsubmit" value="Search" /> 106 </div> 107 </form>'; 108 109 echo apply_filters('get_search_form', $form); 94 110 } 95 111 -
trunk/wp-includes/widgets.php
r9219 r9234 764 764 function wp_widget_search($args) { 765 765 extract($args); 766 $searchform_template = get_template_directory() . '/searchform.php';767 768 766 echo $before_widget; 769 767 770 768 // Use current theme search form if it exists 771 if ( file_exists($searchform_template) ) { 772 include_once($searchform_template); 773 } else { ?> 774 <form id="searchform" method="get" action="<?php bloginfo('url'); ?>/"><div> 775 <label class="hidden" for="s"><?php _e('Search for:'); ?></label> 776 <input type="text" name="s" id="s" size="15" value="<?php the_search_query(); ?>" /> 777 <input type="submit" value="<?php echo attribute_escape(__('Search')); ?>" /> 778 </div></form> 779 <?php } 780 769 get_search_form(); 770 781 771 echo $after_widget; 782 772 }
Note: See TracChangeset
for help on using the changeset viewer.