• Resolved mkb1967

    (@mkb1967)


    Hello,
    I am looking for code to put in my search.php that will cause search results to post title only, not page/post content. I perused this forum and found a code that I could place at the top of each post, but I’d prefer to put it in the php if possible.

    Can it be done? Below is my theme’s search.php code. Thanks!

    <?php
    
    get_header(); ?>
    
    		<section id="container">
    			<div id="content" role="main">
    
    			<?php if ( have_posts() ) : ?>
    
    				<?php mantra_content_nav( 'nav-above' ); ?>
    				<h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'mantra' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
    	<div class="contentsearch"><?php get_search_form(); ?></div>
    				<?php /* Start the Loop */ ?>
    				<?php while ( have_posts() ) : the_post(); ?>
    
    									<?php
    				/* Run the loop for the search to output the results.
    				 * If you want to overload this in a child theme then include a file
    				 * called loop-search.php and that will be used instead.
    				 */
    				 get_template_part( 'content', get_post_format() );
    				?>
    										<?php endwhile; ?>
    
    				<?php if($mantra_pagination=="Enable") mantra_pagination(); else mantra_content_nav( 'nav-below' ); ?>
    
    			<?php else : ?>
    
    				<article id="post-0" class="post no-results not-found">
    	<h1 class="page-title"><?php printf( __( 'No search results for: %s', 'mantra' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
    					<header class="entry-header">
    						<h1 class="entry-title"><?php _e( 'Nothing Found', 'mantra' ); ?></h1>
    					</header><!-- .entry-header -->
    
    					</article><!-- #post-0 -->
    	<br /><div class="contentsearch"><?php get_search_form(); ?></div>
    				<?php endif; ?>
    
    			</div><!-- #content -->
    		<?php get_sidebar(); ?>
    		</section><!-- #primary -->
    
    <?php get_footer(); ?>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘How To:In Search Results, Display Post Titles only, not content’ is closed to new replies.