Skip to content

Instantly share code, notes, and snippets.

@GianfrancoFrau
Last active February 19, 2024 14:31
Show Gist options
  • Save GianfrancoFrau/7c169797df30fcf51f322177df27095f to your computer and use it in GitHub Desktop.
Save GianfrancoFrau/7c169797df30fcf51f322177df27095f to your computer and use it in GitHub Desktop.
[Wordpress delete 0 tags]
<?php
function delete_zero_tags() {
$tags = get_terms( array(
'taxonomy' => 'post_tag',
'hide_empty' => false,
));
if ( !empty($tags) && !is_wp_error($tags) ) {
foreach ( $tags as $tag ) {
if ( $tag->count == 0 ) {
wp_delete_term( $tag->term_id, 'post_tag' );
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment