/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

add_action( 'wp_head', function() {
    if ( ! is_tax( 'provincia' ) && ! is_tax( 'localidad' ) ) return;
    $term = get_queried_object();
    echo '<!-- DREV DEBUG: term=' . esc_html( $term->name ) . ' desc=' . esc_html( $term->description ) . ' -->';
    echo '<!-- DREV HOOKS: ' . esc_html( implode( ', ', array_keys( $GLOBALS['wp_filter']['rank_math/frontend/description'] ?? [] ) ) ) . ' -->';
}, 999 );

