Created
September 20, 2020 11:37
-
-
Save andrii-kvlnko/175b7fbd17cf50ae0fb0b9a32fca9858 to your computer and use it in GitHub Desktop.
Set All pruduct categories Ukrainian Language
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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