WordPress Theme Development page-template_search.php

Template: Search

<div class="blog_list_container">

    <h2>Your search results are below...</h2>

    <!-- TODO: Paginate Blog List -->
    <div class="category_links">

        <?php the_category( "" ); ?>
    </div>
                    
    <nav class="blog_home_pagination">

                        
    <?php //previous_posts_link(); ?>

    <?php echo paginate_links( 

    array (
                                
        "prev_next" => true,
        "prev_text" => "Prev Posts",
        "next_text" => "Next Posts"            
        )
    ); 
   
    ?>
                    
    <?php //next_posts_link(); ?>   
                        

    <!-- <a href="home.php">Previous</a>
    <a href="home.php">1</a>
    2, ... <a href="">5</a>
    <a href="home.php">Next</a> -->

    </nav>
                    
    <ul>         

        <div class="post_list_search">  
                            
            <h3><?php printf( __( 'Search Results for: %s' ), '<span id="search_result">"' . get_search_query() . '"</span>'); ?></h3>

            <?php if ( have_posts() ) : ?>

            <?php while ( have_posts() ) : the_post(); ?>

                <!-- Content that loops goes here --->
                <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> </li>

            <?php endwhile; else : ?>

                <!-- The loop ends at this point -->
                <li>No Search Items returned</li>

                <?php get_search_form() ;?>

            <?php endif; ?> 

        </div>

    </ul>

</div>