Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- if( ! function_exists( 'videotube_prefilter_orderby' ) ){
- function videotube_prefilter_orderby( $query ) {
- if( isset( $_REQUEST['order_post'] ) && in_array( $_REQUEST['order_post'], array( 'title' , 'name', 'post_name' ) ) ){
- if( $query->is_home() || $query->is_search || is_tax() || is_archive() && !is_admin() ){
- if( $query->is_main_query() ){
- $query->set( 'orderby', $_REQUEST['order_post'] );
- $query->set( 'order', 'ASC' );
- }
- }
- }
- }
- add_action('pre_get_posts', 'videotube_prefilter_orderby' );
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement