Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author TC.K

    (@wp_dummy)

    Yes, it can. You can add a conditional check on your search.php file to decide how you want your result displayed.

    For eg. in your search.php while loop:

    <?php while ( have_posts() ) : the_post(); ?>
      <?php if($_GET['s']=='uwpsfsearchtr'){
              //add your own result display here. or you can include the template here as well.
        }else{
    
          //here is your default search template result display style.
       }
      ;?>
    <?php endwhile; ?>

    It seems to be uwpsfsearchtrg rather than uwpsfsearchtr

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Results Page’ is closed to new replies.