Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- if( ! function_exists( 'videotube_child_reorder_videos_with_like' ) ){
- /**
- * Reoder videos based on liked
- * @param $query
- */
- function videotube_child_reorder_videos_with_like( $query ) {
- $order = isset( $_REQUEST['order_post'] ) ? trim( $_REQUEST['order_post'] ) : null;
- if( $query->is_home() || $query->is_search || is_tax( 'video_tag' ) || is_tax( 'categories' ) || is_post_type_archive( 'video' ) && !is_admin() ){
- if( $query->is_main_query() && ( $order == 'liked' || is_null( $order ) ) ){
- $query->set( 'meta_key','like_key' );
- $query->set( 'orderby', 'meta_value_num date' );
- }
- }
- }
- add_action('pre_get_posts', 'videotube_child_reorder_videos_with_like', 100 );
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement