• Resolved Fletcher

    (@seivadf)


    Hi, currently when i search something on my WordPress site it displays the full page in results. I would like it to automatically display the results as excerpts:

    My code in search.php is as follows:

    <?php 
    
    /**
     *
     * search.php
     *
     * The search results template. Used when a search is performed.
     *
     */
    
    get_header(); ?>
    <div class="ttb-layout-wrapper">
        <div class="ttb-content-layout">
            <div class="ttb-content-layout-row">
                <div class="ttb-layout-cell ttb-sidebar1">
                  <?php get_sidebar('default'); ?>
                  <div class="cleared"></div>
                </div>
                <div class="ttb-layout-cell ttb-content">
    			<?php get_sidebar('top'); ?>
    			<?php
    				if(have_posts()) {
    
    					theme_post_wrapper(
    			  			array('content' => '<h4 class="box-title">' . sprintf( __( 'Search Results for: %s', THEME_NS ),
    			  				'<span class="search-query-string">' . get_search_query() . '</span>' ) . '</h4>'
    			  			)
    			  		);
    
    					/* Display navigation to next/previous pages when applicable */
    					if (theme_get_option('theme_top_posts_navigation')) {
    						theme_page_navigation();
    					}
    
    					/* Start the Loop */
    					while (have_posts()) {
    						the_post();
    						get_template_part('content',get_post_format());
    					}
    
    					/* Display navigation to next/previous pages when applicable */
    					if (theme_get_option('theme_bottom_posts_navigation')) {
    						 theme_page_navigation();
    					}
    
    				} else {
    					theme_404_content(
    						array(
    							'error_title' => __('Nothing Found', THEME_NS),
    							'error_message' => __('Sorry, but nothing matched your search criteria. Please try again with some different keywords.', THEME_NS)
    						)
    					);
    
    				}
    		    ?>
    			<?php get_sidebar('bottom'); ?>
                  <div class="cleared"></div>
                </div>
            </div>
        </div>
    </div>
    <div class="cleared"></div>
    <?php get_footer(); ?>

    Any assistance would be appreciated.

Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Show Search Results as Excerpts’ is closed to new replies.