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) ); }); } }); SFCW will host a Charlie Smith Appreciation Night! - OWW

SFCW will host a Charlie Smith Appreciation Night!

Charlie

From the office of Southern Fried Championship Wrestling:  We are proud to announce that on Saturday March 12th in Monroe, GA, SFCW will host the Charlie Smith Appreciation Night show. All proceeds from the show will be presented to the Cauliflower Alley Clubs wrestler benevolent fund in Honor of Charlie Smith. We are actively seeking donations of items for an auction to help raise funds as well. Workers and past dignitaries wishing to participate please PRIVATE message me to let me know. Not everyone can or will be used but we will make every effort to work as many in as possible. Please share with your friends and post on your walls and let’s make this a grand event for one of the pioneers of wrestling in Georgia and an all around great guy. Thanks and have a Merry Christmas!!!

Contact information:
Promoter – Charles Anschutz
canschutz@windstream.net