say i've got a url http://bfami.modernactivity.co.uk/category/museum/orderby/date/order/desc/
that works with;
add_rewrite_rule( 'category/(.+?)/orderby/([^/]+)/order/([^/]+)(/page/?([0-9]{1,}))?/?$', 'index.php?category_name=$matches[1]&paged=$matches[5]&orderby=$matches[2]&order=$matches[3]', 'top' );
how do i get the value of orderby or order on a page? Think wordpress removes the GET values which is what i'd normally use...
Just want to highlight the active order filter on the page!