/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
function expose_order_by_views_query_alter(&$view, &$query) { { $_SESSION['sortoptions'] = $_GET['sortoptions']; } if ( $_SESSION['sortoptions'] == 'A-Z' ) $query->orderby[0] = 'node_title ASC'; else if ( $_SESSION['sortoptions'] == 'Z-A' ) $query->orderby[0] = 'node_title DESC'; else //No Session Data { $_SESSION['sortoptions'] = 'A-Z'; $query->orderby[0] = 'node_title ASC'; } }