The Still the Problem Tour is looking to become the most lucrative concert tour, of any genre, in 2026. Continue reading…Country Music News – Taste of Country
The Still the Problem Tour is looking to become the most lucrative concert tour, of any genre, in 2026. Continue reading…Country Music News – Taste of Country
Jason Aldean kicked off his Songs About Us Tour, but what he’s been doing at home between shows might be the most unexpected part of his year. Continue reading…Country Music News – Taste of Country
Jason Aldean kicked off his Songs About Us Tour, but what he’s been doing at home between shows might be the most unexpected part of his year. Continue reading…The Boot – Country Music News, Music Videos and Songs
For the perfect crust on a nice, juicy steak, try popping that bad boy under your oven’s broiler. Here’s why this method creates the ideal exterior.

Mashed – Fast Food, Celebrity Chefs, Grocery, Reviews
The term “block theme” is used a lot in WordPress but it was never really clear to me what that meant exactly from a code point of view.
While researching The post editor is going full iframe: what block developers need to know before WordPress 7.1, I learned that the outcome of testing WordPress 7.1 Beta 1 may soften the plan: instead of forcing the iframe for everyone, core might force it only for block themes, while classic themes using blocks with apiVersion 2 or lower keep the current 7.0 behavior. (The linked article covers the 7.0 state of things in full.)
If that’s the split, then the exact definition of “block theme” suddenly matters a great deal. So what does core actually check?
The public API is wp_is_block_theme(), which just asks the active theme:
// wp-includes/theme.php (guard clause trimmed)
function wp_is_block_theme() {
return wp_get_theme()->is_block_theme();
}
And WP_Theme::is_block_theme() is, in its entirety, a file-existence check:
// wp-includes/class-wp-theme.php (caching trimmed)
public function is_block_theme() {
$paths_to_index_block_template = array(
$this->get_file_path( '/templates/index.html' ),
$this->get_file_path( '/block-templates/index.html' ),
);
foreach ( $paths_to_index_block_template as $path ) {
if ( is_file( $path ) && is_readable( $path ) ) {
return true;
}
}
return false;
}
A theme is a “block theme” if it ships an index.html block template, either in templates/, or in block-templates/, the pre-5.9 legacy location. Nothing else is consulted. That has a few consequences that may surprise people:
theme.json doesn’t make you a block theme. Neither do patterns, block template parts, or add_theme_support( 'block-templates' ). A theme can adopt every one of those “hybrid” features and still land on the classic side of this check, because the test only looks for a top-level index.html template.
Child themes inherit the answer. get_file_path() looks in the child theme first and falls back to the parent, so a child theme of a block theme is a block theme even if the child ships no templates of its own.
It’s a filesystem check, not a declaration. There’s no header in style.css that opts you in or out. Drop a templates/index.html into a theme and, as far as WordPress is concerned, it is a block theme.
This is the entire minimum viable block theme — two files:
my-block-theme/
├── style.css ← standard theme header
└── templates/
└── index.html ← this file IS the decider
(WordPress considers a theme valid if it has style.css plus either index.php or templates/index.html, which means for a block theme, index.php, functions.php, and even theme.json are all optional.)
And this is a theme that is guaranteed to stay classic:
my-classic-theme/
├── style.css
└── index.php ← the classic fallback template
Staying on the classic side of the check comes down to two conditions:
templates/index.html and no legacy block-templates/index.html. Other block templates don’t matter: a theme with `templates/single.html` but no `templates/index.html` still tests as classic. (In practice, though, if you’re shipping block templates, ship the index and be a block theme on purpose.)Everything else is fair game. theme.json, patterns, add_theme_support( 'block-template-parts' )` custom templates registered from plugins — none of them flip the switch., patterns, add_theme_support( 'block-template-parts' ), custom templates registered from plugins: none of them flip the switch.
Running that check against some current releases from the theme directory
| Tests classic | Tests block |
|---|---|
| Twenty Twenty-One and every earlier default | Twenty Twenty-Two and every later default |
Astra, Kadence, Blocksy, Botiga, Sydney, Hello Elementor — all ship theme.json |
|
| GeneratePress, Neve, OceanWP, Storefront |
Six of the themes in the first column ship theme.json, the marquee “block” feature, and still test classic, because the check never looks at theme.json
Twenty Twenty and OceanWP are another good gotcha: both ship a templates/ directory and are still classic, because it’s full of PHP page templates (template-cover.php, landing.php). The check wants templates/index.html specifically, so “does it have a templates folder” is not the indicator you might assume.
On the JavaScript side, the block-theme flag surfaces in two different places, which is worth knowing if you go source-diving.
As an editor setting:
// wp-includes/block-editor.php, get_block_editor_settings()
$editor_settings['__unstableIsBlockBasedTheme'] = wp_is_block_theme();
and on the REST themes endpoint, which is where @wordpress/core-data picks it up:
// wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php
$data['is_block_theme'] = $theme->is_block_theme();
For all the weight the term carries, “block theme” boils down to a single file: templates/index.html exists, or it doesn’t. Not theme.json, not patterns, not any amount of hybrid adoption. Just one index template, checked up the parent chain.
That’s worth keeping in mind if 7.1 does end up drawing the iframe line at wp_is_block_theme(). A hybrid theme that has adopted everything except block templates would keep the classic editor behavior, while adding a single templates/index.html (even accidentally, even in a parent theme you don’t control) would flip a site to the forced iframe. If your theme or your users’ sites sit anywhere near that line, now is a good time to check which side of it you’re actually on: it’s one is_file() call away.
WordPress Planet
Riley Green is stepping into a brand-new role as a coach on Season 30 of NBC’s The Voice, and his infamous red chair is getting a custom upgrade unlike anything fans have seen before.
During a recent interview with K99.1 FM, Green revealed that host and producer Carson Daly helped him customize his chair after the country star realized his signature cowboy hat wouldn’t work with the chair’s tall back. The solution? A custom hat holder built specifically for him.
“Carson Daly was like, we’re sitting over there and he said, ‘What are you going to do with your hat? Are you going to wear it during the show?’ I said, ‘Well, I can’t because the chair, the back of it, you can’t wear a cowboy hat with a tall chair like that.’ And I was like, ‘Man, it’d be cool to have a little holster for it.’ And he’s like, ‘Well, I’m one of the executive producers. I can probably get that done.’” Green recalled.

When Green returned to set, he discovered that Carson had made it happen.
“Next thing I know, I got a little holster for my hat. So nobody else has that,” he pointed out.
The Alabama native also revealed that his custom hat holder may become more than just a convenient accessory—it could become part of his strategy as he competes with the other coaches to recruit talented contestants.
“What I found out is having the hat whenever you’re trying to get somebody to pick you for their team, when you can pull it out and put it on, they know you’re serious. That’s another…Little strategy.”
Green will join veteran coaches Adam Levine and Kelly Clarkson, along with new coach Queen Latifah, for the upcoming season. While Green has taken on some unexpected opportunities throughout his career, including an acting role on CBS’ Marshals, he admitted that becoming a coach on The Voice was never something he imagined.
“Never crossed my mind. And when they called me about it, they were interested in me being on the show, I still thought there’s no way,” he shared.

The “My Way” singer described his time on the show as “such a cool experience” and said that “everybody’s been great.”
“I can’t believe I’m on the show and all the contestants that are coming on there, it’ll be cool to get to try to help them out along the way.”
While fans have yet to see Green in action on the set of The Voice, the countdown to Season 30 is officially underway.

Season 30 of The Voice will kick off with a three-night premiere beginning Monday, September 21. The debut episode airs from 8-10 p.m. ET/PT, followed by one-hour episodes on Tuesday, September 22, and Wednesday, September 23, both airing at 8 p.m. ET/PT.
Following premiere week, the competition series will settle into its regular schedule, airing Mondays from 8-10 p.m. ET/PT throughout September and October. In November, the show will transition to a one-hour broadcast beginning at 9 p.m. ET/PT on Monday nights.
Riley Green’s new album, That’s Just Me, will arrive just days before the highly anticipated premiere on September 18.
The post Riley Green’s ‘The Voice’ Chair Gets A One-Of-A-Kind Upgrade Thanks To Carson Daly appeared first on Country Now.
Country Now
Alex Palou continues to win, and he remains No. 1 in these power rankings. The Chip Ganassi Racing driver now has five wins this season, with the fifth coming Monday at Nashville Superspeedway. The driver who made a big jump this week? It’s the driver who physically and quite literally can’t even jump right now because of a badly bruised knee. That’s David Malukas. He went from the 12th row to third at Nashville. Here are my rankings going into a two-week break in the INDYCAR schedule: Dropped out: Will Power (Last Week: 8) On the verge: Will Power, Nolan Siegel, Kyffin Simpson. VeeKay looked like he was on the verge of earning his fourth top 10 in the last six races before the cautions and pit sequence cost him track position. He ended up 12th at Nashville, which was still a solid day. Ericsson finished sixth for this third top 10 in the last five races. To see him at one point challenge for the lead had to be a thrill for his fans. Rosenqvist had a surprisingly average qualifying result, as he started 17th on the grid. To go from there to finishing fifth was enough to make him feel good about his day. McLaughlin finished fourth at Nashville for his fourth top five of the season and his third in the last six races. He’d like to challenge for the lead more, but at least he can see the leaders. O’Ward was extremely frustrated after qualifying as he started 12th at Nashville. He was able to scrap for a seventh-place finish. Unfortunately, that wasn’t the momentum he was hoping for coming off the Mid-Ohio win. Kirkwood won the pole at Nashville and appeared to be a favorite for the race before losing his track position on the yellows and pit sequence. A 10th was a disappointing result considering his high hopes coming in. Lundgaard had an awful weekend with a grid penalty for being on his fifth engine, and he started 24th. He finished 16th and maybe no one is looking more forward to Portland in a few weeks than Lundgaard. Newgarden finished a frustrating second as he felt it was track position race at the end. He started second and finished second. To echo his words, “it is what it is.” Malukas was perilously close to not even racing this weekend after a hard crash Saturday in practice. He went from the back of the field all the way to third. It was a great race on a tough weekend. Palou is now a five-time winner this season. And he very well could be a five-time series champion in less than two months.Latest Sports News from FOX Sports

(Getty Images)
Two of Alaska’s largest labor organizations have sued Gov. Mike Dunleavy for failing to promptly fill two seats on the board that governs the state’s public employee pension plans.
The Alaska AFL-CIO, National Education Association-Alaska and five individuals filed suit Wednesday in Anchorage Superior Court, seeking a court order that would require the governor to fill seats on the Alaska Retirement Management Board that are designated for the teachers’ and public employees’ unions.
According to the complaint, the seats have been vacant since March 1. The unions sent lists of possible nominees to the governor four months before that, on Dec. 1.
Under state law, “a vacancy on the board of trustees shall be promptly filled.”
The unions sent a warning letter to the governor’s office in late May about the issue.
Stephen Cox, the attorney general designee whose confirmation was rejected by the Alaska Legislature this year, responded to the message. Now working as Counsel to the Governor, Cox said the law reserving seats for the unions “warrants further analysis, as it potentially encroaches upon the Governor’s constitutional appointment authority.”
Cox said the governor will be requesting a formal legal opinion from acting Attorney General Cori Mills.
“The administration does not comment on lawsuits,” said Jeff Turner, the governor’s communications director, when reached for comment.
The Beacon contacted the Department of Law on Monday afternoon as well, seeking comment about the lawsuit. It did not respond by 8 a.m. the following day.
The plaintiffs are being represented by attorney Scott Kendall, who has frequently fought cases against the Dunleavy administration.
By phone on Monday afternoon, Kendall said the issue is “very important” because the board handles billions of dollars’ worth of investments on behalf of state residents.
Two board meetings have already taken place without union representatives.
“This isn’t the, ‘Oops, this slipped through the cracks sort of issue.’ The new nominees were put forward by both unions three months before the prior terms expired. Those filings were acknowledged by the Department of Revenue, which handles this. So everything was done timely,” he said.
In the complaint, the plaintiffs state that if the issue goes to trial, Cox should not have a role because state law requires the Department of Law — through staff attorneys or hired counsel — to represent the state in legal issues.
Kendall said the legality of laws constraining a governor’s appointment powers have been repeatedly tried in court and upheld.
“To be honest, it’s befuddling. There’s a very clear statute. There’s a very clear regulation. They say these people shall be appointed promptly, and they shall be from lists from these two groups,” he said. “So I think it’s quite honestly bizarre that we’re even in this situation, but here we are nonetheless.”
Turning an already good Culver’s sandwich into an excellent one isn’t complicated. A basic ingredient swap will make a delicious difference.

Mashed – Fast Food, Celebrity Chefs, Grocery, Reviews
Shelton and Stefani celebrated five years of marriage with a night out…and fans suspect that that night out might have been Taylor Swift’s wedding. Continue reading…The Boot – Country Music News, Music Videos and Songs