multilanguage shortcode
-
I have some problems with the following
add_shortcode('periodo_affitti', 'translate_rent');
function translate_rent() {
global $post;
$lang = substr( get_locale(), 0, 2 );
if ('it' != $lang )
{ $period_lang= get_the_author_meta('periodo_affitti_$lang', $post->post_author);
if ( ! empty( $period_lang)
return $period_lang ;
} else {
return $period_lang;
}
} else {
return $period_lang;
}
}, 10, 2 );The page I need help with: [log in to see the link]
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
The topic ‘multilanguage shortcode’ is closed to new replies.