File: D:/HostingSpaces/PDeckers/dcinstal.com/wwwroot/wp-content/themes/u-design/search.php
<?php
/**
* @package WordPress
* @subpackage U-Design
*/
if ( !defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
get_header();
include('scripts/search_excerpt/ylsy_search_excerpt.php');
?>
<div id="content-container" class="container_24">
<div id="main-content" class="grid_24">
<div class="main-content-padding">
<?php udesign_main_content_top( is_front_page() ); ?>
<?php if (have_posts() && trim($s) != '') :
while (have_posts()) : the_post(); ?>
<div <?php post_class(); ?> id="post-<?php the_ID(); ?>">
<?php udesign_entry_before(); ?>
<div class="entry">
<?php udesign_entry_top(); ?>
<?php $title = get_the_title();
$search_term = preg_replace('/\/|\+|\*|\[|\]/iu','', trim($s));
$keys= explode(" ",$search_term);
$title = preg_replace( '/('.implode('|', $keys) .')/iu', '<strong class="search-excerpt">\0</strong>', $title );
?>
<h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php echo $title; ?></a></h3>
<?php
$excerpt = new SearchExcerpt();
echo strip_shortcodes( $excerpt->the_excerpt( get_the_excerpt() ) ); ?>
<?php udesign_entry_bottom(); ?>
</div>
<?php udesign_entry_after(); ?>
</div>
<?php endwhile; ?>
<div class="clear"></div>
<?php // Pagination
if(function_exists('wp_pagenavi')) :
wp_pagenavi();
else : ?>
<div class="navigation">
<div class="alignleft"><?php previous_posts_link() ?></div>
<div class="alignright"><?php next_posts_link() ?></div>
</div>
<?php endif; ?>
<?php else :
ob_start(); ?>
<h4 class="center"><?php esc_html_e("Didn't find what you were looking for? Refine your search!", 'udesign'); ?></h4>
<div class="inline-search-form"><?php get_search_form(); ?></div><?php
echo do_shortcode('[message type="warning"]' . ob_get_clean() . '[/message]'); ?>
<?php endif;
//Reset Query
wp_reset_query(); ?>
<div class="clear"></div>
<?php udesign_main_content_bottom(); ?>
</div><!-- end main-content-padding -->
</div><!-- end main-content -->
</div><!-- end content-container -->
<div class="clear"></div>
<?php
get_footer();