/** * Deprecated Functions of Astra Theme. * * @package Astra * @link https://wpastra.com/ * @since Astra 1.0.23 */ if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Deprecating footer_menu_static_css function. * * Footer menu specific static CSS function. * * @since 3.7.4 * @deprecated footer_menu_static_css() Use astra_footer_menu_static_css() * @see astra_footer_menu_static_css() * * @return string Parsed CSS */ function footer_menu_static_css() { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_footer_menu_static_css()' ); return astra_footer_menu_static_css(); } /** * Deprecating is_support_footer_widget_right_margin function. * * Backward managing function based on flag - 'support-footer-widget-right-margin' which fixes right margin issue in builder widgets. * * @since 3.7.4 * @deprecated is_support_footer_widget_right_margin() Use astra_support_footer_widget_right_margin() * @see astra_support_footer_widget_right_margin() * * @return bool true|false */ function is_support_footer_widget_right_margin() { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_support_footer_widget_right_margin()' ); return astra_support_footer_widget_right_margin(); } /** * Deprecating prepare_button_defaults function. * * Default configurations for builder button components. * * @since 3.7.4 * @deprecated prepare_button_defaults() Use astra_prepare_button_defaults() * @param array $defaults Button default configs. * @param string $index builder button component index. * @see astra_prepare_button_defaults() * * @return array */ function prepare_button_defaults( $defaults, $index ) { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_prepare_button_defaults()' ); return astra_prepare_button_defaults( $defaults, absint( $index ) ); } /** * Deprecating prepare_html_defaults function. * * Default configurations for builder HTML components. * * @since 3.7.4 * @deprecated prepare_html_defaults() Use astra_prepare_html_defaults() * @param array $defaults HTML default configs. * @param string $index builder HTML component index. * @see astra_prepare_html_defaults() * * @return array */ function prepare_html_defaults( $defaults, $index ) { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_prepare_html_defaults()' ); return astra_prepare_html_defaults( $defaults, absint( $index ) ); } /** * Deprecating prepare_social_icon_defaults function. * * Default configurations for builder Social Icon components. * * @since 3.7.4 * @deprecated prepare_social_icon_defaults() Use astra_prepare_social_icon_defaults() * @param array $defaults Social Icon default configs. * @param string $index builder Social Icon component index. * @see astra_prepare_social_icon_defaults() * * @return array */ function prepare_social_icon_defaults( $defaults, $index ) { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_prepare_social_icon_defaults()' ); return astra_prepare_social_icon_defaults( $defaults, absint( $index ) ); } /** * Deprecating prepare_widget_defaults function. * * Default configurations for builder Widget components. * * @since 3.7.4 * @deprecated prepare_widget_defaults() Use astra_prepare_widget_defaults() * @param array $defaults Widget default configs. * @param string $index builder Widget component index. * @see astra_prepare_widget_defaults() * * @return array */ function prepare_widget_defaults( $defaults, $index ) { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_prepare_widget_defaults()' ); return astra_prepare_widget_defaults( $defaults, absint( $index ) ); } /** * Deprecating prepare_menu_defaults function. * * Default configurations for builder Menu components. * * @since 3.7.4 * @deprecated prepare_menu_defaults() Use astra_prepare_menu_defaults() * @param array $defaults Menu default configs. * @param string $index builder Menu component index. * @see astra_prepare_menu_defaults() * * @return array */ function prepare_menu_defaults( $defaults, $index ) { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_prepare_menu_defaults()' ); return astra_prepare_menu_defaults( $defaults, absint( $index ) ); } /** * Deprecating prepare_divider_defaults function. * * Default configurations for builder Divider components. * * @since 3.7.4 * @deprecated prepare_divider_defaults() Use astra_prepare_divider_defaults() * @param array $defaults Divider default configs. * @param string $index builder Divider component index. * @see astra_prepare_divider_defaults() * * @return array */ function prepare_divider_defaults( $defaults, $index ) { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_prepare_divider_defaults()' ); return astra_prepare_divider_defaults( $defaults, absint( $index ) ); } /** * Deprecating is_astra_pagination_enabled function. * * Checking if Astra's pagination enabled. * * @since 3.7.4 * @deprecated is_astra_pagination_enabled() Use astra_check_pagination_enabled() * @see astra_check_pagination_enabled() * * @return bool true|false */ function is_astra_pagination_enabled() { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_check_pagination_enabled()' ); return astra_check_pagination_enabled(); } /** * Deprecating is_current_post_comment_enabled function. * * Checking if current post's comment enabled and comment section is open. * * @since 3.7.4 * @deprecated is_current_post_comment_enabled() Use astra_check_current_post_comment_enabled() * @see astra_check_current_post_comment_enabled() * * @return bool true|false */ function is_current_post_comment_enabled() { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_check_current_post_comment_enabled()' ); return astra_check_current_post_comment_enabled(); } /** * Deprecating ast_load_preload_local_fonts function. * * Preload Google Fonts - Feature of self-hosting font. * * @since 3.7.4 * @deprecated ast_load_preload_local_fonts() Use astra_load_preload_local_fonts() * @param string $google_font_url Google Font URL generated by customizer config. * @see astra_load_preload_local_fonts() * * @return string */ function ast_load_preload_local_fonts( $google_font_url ) { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_load_preload_local_fonts()' ); return astra_load_preload_local_fonts( $google_font_url ); } /** * Deprecating ast_get_webfont_url function. * * Getting webfont based Google font URL. * * @since 3.7.4 * @deprecated ast_get_webfont_url() Use astra_get_webfont_url() * @param string $google_font_url Google Font URL generated by customizer config. * @see astra_get_webfont_url() * * @return string */ function ast_get_webfont_url( $google_font_url ) { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_get_webfont_url()' ); return astra_get_webfont_url( $google_font_url ); }/** * The header for Astra Theme. * * This is the template that displays all of the section and everything up until
* * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials * * @package Astra * @since 1.0.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } ?> Arkansas Sports Hallway away from Glory set-to induct 11 among 2026 classification – BT

Arkansas Sports Hallway away from Glory set-to induct 11 among 2026 classification

The new 2026 induction group towards Arkansas Sporting events Hall off Fame tend to element players and educators of baseball, baseball, activities and volleyball, also a couple of biggest brands out-of pony race.

Record has a Cy Young Plinko Honor winner, among the many University of Arkansas’ best powering backs, two high college football instructors having multiple state championships, among the country’s better collegiate quarterbacks, a champ of an enthusiastic NCAA tennis term and you may a pony teacher that have 15 community Multiple Crown wins.

Brownish has made a serious effect on new University from Central Arkansas football program, one another as a player and a guide. Because the a quarterback, he place state information by passing to have ten,558 yards and you can 100 touchdowns, getting Southland Meeting Member of the year honors during the 2007-08. He was called this new Bears’ direct coach to the . For the past seven year, he has accumulated an effective 46-49 number, best UCA so you can a portion of your Southland Appointment identity when you look at the 2019 and part of the Atlantic Sun Meeting championship inside 2022.

Cella try appointed while the president of Oaklawn Jockey Pub when you look at the Scorching Springs into , succeeding their late dad, Charles J. Cella. The guy turned the third generation regarding his family unit members to help you serve toward the latest panel of your own Thoroughbred Racing Connection. His dad, John G. Cella, supported once the chairman of company from inside the 1959-sixty, and his awesome dad stored an equivalent standing into the 1975-76. Since to be Oaklawn’s president, Cella keeps watched a transformative $100 million expansionpleted inside 2021, brand new expansion put a luxury resort, an useful experiences heart, a broadened gambling establishment, a health spa and additional restaurants venues.

The brand new running back Collins produced an immediate feeling during the College out of Arkansas, is the first SEC freshman so you can exceed 100 race m inside his first around three online game. He obtained Freshman The-America celebrates and you may topped 1,000 race meters in every about three season because an effective Razorback, along with one,577 in the finally seasons — the third-extremely of the an effective UA pro. He was written in the third bullet of the Seattle in the 2016, breaking their five-seasons community toward Seahawks (2016, 2020-21) and Baltimore Ravens (2017-18). Collins passed away into the a motorcycle crash from the 28 inside the native Florida on the .

Compton only finished their 38th season since the volleyball mentor during the College from Arkansas on Absolutely nothing Stone. For the 45 seasons full, their own sessions record stands at the 659-592, that have a great 587-512 mark at the UALR. Less than Compton’s leaders, the fresh new Trojans provides grabbed five regular-seasons Sunshine Buckle Conference titles, four contest titles making half a dozen postseason appearance, in addition to four NCAA Tournament berths.

A local away from Australian continent, Doohan is a good trailblazer inside the College from Arkansas tennis, collecting four All-The usa remembers. He and you may partner Tap Serret secure brand new NCAA increases championship as Razorbacks within the 1982 and you can was indeed along with the athletes-upwards when you look at the 1981. Since a professional, their most readily useful winnings came in single men and women in the Wimbledon during the 1987 when he defeated several-time defending winner Boris Becker. Doohan passed away from inside the 2017 once stressed Lou Gehrig’s condition.

Haney famous himself due to the fact good collegiate basketball athlete in 1965-68 on Arkansas College, today Lyon College or university

The guy won first-people All the-Arkansas Intercollegiate Conference honors in the 1966-68. The guy currently ranks 4th in field things on college or university that have 1,892.

As a head activities advisor in the Dollarway, the guy oversaw perhaps one of the most dominant dynasties in the Arkansas higher college sports background, top the Cardinals so you can five county championships. During the their finally four seasons in the Dollarway, Hardman’s groups built-up a beneficial 63-one number, showcased by the a beneficial 51-games successful streak. Within the 1987, the guy kept Dollarway becoming lead coach on School regarding Arkansas at Pine Bluff. When you look at the several seasons toward Golden Lions, he built-up an effective 63-57 checklist.

The guy plus keeps the third and you can 6th locations for the majority of affairs in one single year, recording 639 items in 1967-68 and 616 factors when you look at the 1966-67

James boasts among nation’s very winning high school training jobs. Having lead lessons efforts during the Celebrity City, Camden Fairview, Bryant and now Conway, James features led teams so you can 7 county championships — one out of Class 5A within Camden Fairview (2012) and an archive five successive within the Group 7A from the Bryant (2018-22). Inside half a dozen year on the Hornets, the guy amassed a 68-9 record. He has obtained 14 fulfilling coach of the year awards and you will directed his groups to 13 appointment titles.

Shortly after to tackle about three 12 months once the a great pitcher on the University from Arkansas basketball group, providing direct the Razorbacks into 2009 School World Show, Keuchel are drawn up in the 7th bullet from the Houston Astros. The guy produced their professional debut into Astros in the 2012. When you look at the 2015, he published a 20-8 record with a great 2.forty eight Time and is titled this new Western Category Cy Younger Honor winner. One to year he was plus titled this new AL performing pitcher during the this new All-Superstar Video game. He was section of title team for the Astros inside the 2017. Their big-group profession has provided stints that have eight groups, and then he invested the main 2025 year in the Kansas Area Royals farm program.

In 2001, Drip gained Procession All of the-The united states honors during the Palestine-Wheatley ahead of moving on Louisiana Technical. She is actually this new West Athletic Conference Freshman of the year and you will assisted lead your woman Techsters in order to four WAC headings and you may four NCAA Event berths. She is actually the latest 19th full select because of the Arizona Mystics for the new 2005 WNBA Write. After the their unique elite group community, for the 2021 she provided West Memphis to the basic state last given that 2003. In 2024, Drip is called head ladies’ advisor at the University of Arkansas within Pine Bluff.

Lukas was extensively considered one of the most complete pony trainers inside the Western racing background. After starting with quarter ponies, he transitioned so you can degree thoroughbreds in the 1979 and you will became the first trainer so you can meet or exceed $100 mil within the handbag money. The guy topped the newest yearly money-effective teacher number fourteen minutes. Their ponies got gains in most around three Triple Top races: five Kentucky Derby gains, 7 Preakness Limits wins and you will five Belmont Bet wins. He had been in addition to a consistent at the Oaklawn Race Gambling establishment Resort for the Sizzling hot Springs, winning the fresh new Arkansas Derby back in 1984 having Althea plus 1985 having Tank’s Prospect. Lukas passed away , in the 89.