Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Mikko Saari

    (@msaari)

    Please start with this.

    Does that help?

    Thread Starter taylor1993

    (@taylor1993)

    i tried all what was written above but i couldnot find anything in search.php
    this is the code in my search.php :
    <?php
    /**
    * The template for displaying Search Results pages.
    *
    * @package Blue Planet
    */

    get_header(); ?>

    <section id=”primary” class=”content-area col-md-8 col-sm-12 col-xs-12 <?php echo blue_planet_layout_setup_class(); ?>”>
    <main id=”main” class=”site-main” role=”main”>

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

    <header class=”page-header”>
    <h1 class=”page-title”><?php printf( __( ‘Search Results for: %s’, ‘blue-planet’ ), ‘<span>’ . get_search_query() . ‘</span>’ ); ?></h1>
    </header><!– .page-header –>

    <?php /* Start the Loop */ ?>
    <?php while ( have_posts() ) : the_post(); ?>

    <?php get_template_part( ‘content’, ‘search’ ); ?>

    <?php endwhile; ?>

    <?php blue_planet_paging_nav(); ?>

    <?php else : ?>

    <?php get_template_part( ‘content’, ‘none’ ); ?>

    <?php endif; ?>

    </main><!– #main –>
    </section><!– #primary –>

    <?php get_sidebar(); ?>
    <?php get_footer(); ?>

    please help le if you have any idea how should i do this

    Plugin Author Mikko Saari

    (@msaari)

    There are no problems with your search template. It is something else, and it’s hard to say what without taking a closer look at your site.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to use the plugin’ is closed to new replies.