Skip to content

Instantly share code, notes, and snippets.

@andrii-kvlnko
Created September 20, 2020 11:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andrii-kvlnko/175b7fbd17cf50ae0fb0b9a32fca9858 to your computer and use it in GitHub Desktop.
Save andrii-kvlnko/175b7fbd17cf50ae0fb0b9a32fca9858 to your computer and use it in GitHub Desktop.
Set All pruduct categories Ukrainian Language
add_action( 'wp', 'porto_child_categories' );
function porto_child_categories() {
$categories = get_terms(
[
'taxonomy' => 'product_cat',
'lang' => ''
]
);
foreach( $categories as $category ) {
pll_set_term_language( $category->term_id, 'uk' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment