add_action('wp_enqueue_scripts', 'my_theme_enqueue_styles'); function my_theme_enqueue_styles() { wp_enqueue_style('child-style', get_stylesheet_uri(), array('generatepress'), wp_get_theme()->get('Version') ); } // Remove sidebar on search pages add_filter('generate_sidebar_layout', function($layout) { if (is_search()) { return 'no-sidebar'; } return $layout; }); // Faceted Search Implementation add_action('pre_get_posts', function($query) { if ($query->is_search() && !is_admin() && $query->is_main_query()) { // Include all relevant post types $query->set('post_type', array('profile', 'post', 'page')); // Set higher posts per page to capture all relevant content $query->set('posts_per_page', 50); // Get search term $search_term = trim($query->get('s')); // Add custom ordering by post type and relevance add_filter('posts_orderby', function($orderby) use ($search_term) { global $wpdb; // Exact match means EXACTLY "Hulk Hogan" for Hulk Hogan profile, not partial match return $wpdb->prepare(" CASE WHEN {$wpdb->posts}.post_type = 'profile' AND LOWER({$wpdb->posts}.post_title) = LOWER(%s) THEN 1 WHEN {$wpdb->posts}.post_type = 'profile' THEN 2 WHEN {$wpdb->posts}.post_type = 'post' THEN 3 ELSE 4 END ASC, {$wpdb->posts}.post_date DESC", $search_term ); }); } }); // Enqueue search styles add_action('wp_enqueue_scripts', function() { if (is_search()) { wp_enqueue_style('search-styles', get_stylesheet_directory_uri() . '/search-style.css'); } }); // Add Scripts add_action('wp_enqueue_scripts', 'my_theme_enqueue_styles'); function my_theme_enqueue_styles() { wp_enqueue_style('child-style', get_stylesheet_uri(), array('generatepress'), wp_get_theme()->get('Version') ); } // Faceted Search: Order by Profile, News, and Pages add_action('pre_get_posts', function($query) { if ($query->is_search() && !is_admin() && $query->is_main_query()) { $query->set('post_type', array('profile', 'post', 'page')); $query->set('posts_per_page', 50); $search_term = $query->get('s'); add_filter('posts_orderby', function() use ($search_term) { global $wpdb; return $wpdb->prepare( "CASE WHEN {$wpdb->posts}.post_type = 'profile' AND LOWER({$wpdb->posts}.post_title) = LOWER(%s) THEN 1 WHEN {$wpdb->posts}.post_type = 'profile' THEN 2 WHEN {$wpdb->posts}.post_type = 'post' THEN 3 ELSE 4 END ASC, {$wpdb->posts}.post_date DESC", $wpdb->esc_like($search_term) ); }); } }); Kenny Omega added to big ROH shows - OWW

Kenny Omega added to big ROH shows

Kenny-Omega-645x323

Ring of Honor announced that Kenny Omega will appear on the 14th anniversary PPV and TV tapings. The ROH 14th anniversary PPV event takes place in Las Vegas on February 26th with TV tapings the next day, both at Sam’s Town Live…

* ROH World Title Match: Champion Jay Lethal vs. Adam Cole vs. Kyle O’Reilly
* The Briscoes vs. Michael Elgin and Hiroshi Tanahashi
* Other Stars Appearing: Kazuchika Okada, Gedo, KUSHIDA, Tomohiro Ishii, Kenny Omega, Roderick Strong, The Young Bucks and War Machine