Guest User

Untitled

a guest
Apr 25th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. add_filter( 'request', 'wcc_request' );
  2. function wcc_request( $vars ) {
  3.     print_r($vars);
  4.   // Procuramos saber se o URL pede para sortear uma das colunas
  5.   if ( isset( $vars['orderby'] ) ) {
  6.  
  7.     // Sorteamos por coluna
  8.     switch ( $vars['orderby'] ) {
  9.  
  10.       case 'wcc_column' :
  11.          $vars = array_merge( $vars, array(
  12.            'orderby' => 'wcc_words'
  13.          ) );
  14.          break;
  15.     }
  16.   }
  17.   return $vars;
  18. }
Add Comment
Please, Sign In to add comment