Advertisement
Guest User

Relevanssi dinamic search link

a guest
Aug 29th, 2012
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.12 KB | None | 0 0
  1. <?php
  2. /************************************************************************************
  3. /* Zobrazení odkazu na způsob řazení výsledků vyhledávání                           *
  4. /* Zobrazí se pouze pokud je aktivní plugin Relevanssi (http://www.relevanssi.com/) *
  5. /* -------------------------------------------------------------------------------- *
  6. /* Created by Lukenzi <lukenzi@gmail.com>                                           *
  7. /***********************************************************************************/
  8. if(function_exists('relevanssi_options')){
  9.     if(is_search()){
  10.         $siteurl = get_option('siteurl');
  11.  
  12.         if(isset($_GET['orderby']) && !empty($_GET['orderby'])){
  13.             echo '<a class="search-button" href="'.$siteurl.'/?s='.strip_tags(addslashes($_GET['s'])).'" rel="nofollow">Seřadit podle relevance</a>';
  14.         }else{
  15.             echo '<a class="search-button" href="'.$siteurl.'/?s='.strip_tags(addslashes($_GET['s'])).'&orderby=post_date&order=desc" rel="nofollow">Seřadit podle data</a>';
  16.         }
  17.  
  18.         unset($siteurl);
  19.     }
  20. }
  21. /**********************************************************************************/
  22. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement