Hello, I have brought an additional field for THE countries https://cln.sh/F0Izvc “seo”
And then I just created a variable for yoast and it worked.
function get_town() {
$lang = $_COOKIE[‘trp_language’] ?? ‘ru_RU’;
$lang = strtolower($lang);
$end = get_option(‘language_end_title_’.$lang,”);
return $end;
}
// define the action for register yoast_variable replacments
function register_custom_yoast_variables_town() {
wpseo_register_var_replacement( ‘%%town%%’, ‘get_town’, ‘advanced’, ‘some help text’ );
}
// Add action
add_action(‘wpseo_register_extra_replacements’, ‘register_custom_yoast_variabless_town’);`