I know I can use cloudflare_purge_by_url, but it should be enabled by default
Hello,
View post on imgur.com
I select category like that.
It only purges Adventure Games, but not purge Games
Anyone face this can add this code to theme function:
/**
* Get all terms in all languages when the language is set from the content or directory name
*/
add_filter( ‘get_terms_args’, ‘rank_math_remove_terms_filter’ );
function rank_math_remove_terms_filter( $args ) {
if ( isset( $GLOBALS[‘wp_query’]->query[‘sitemap’] ) ) {
$args[‘lang’] = ”;
}
return $args;
}