Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //SHORTCODE DESCRIZIONE IN TEDESCO
- //nuova concatenazione
- add_shortcode('description', 'translate_desc');
- function translate_desc() {
- global $post;
- $lang = substr( get_locale(), 0, 2);
- $category = get_the_category( $post->ID )[0]->name;
- $names_trans = array(
- 350 => __('Apartment', 'sacconicase'),
- 354 => __('Apartment in villa', 'sacconicase'),
- 355 => __('Penthouse', 'sacconicase'),
- 357 => __('Bungalow', 'sacconicase'),
- 356 => __('Studio', 'sacconicase'),
- 367 => __('Villa', 'sacconicase'),
- 351 => __('Terraced villa', 'sacconicase'),
- );
- $terms_destinazione = $names_trans[ get_the_terms( $post->ID, 'tipologia') [0]->term_id ] ;
Advertisement
Add Comment
Please, Sign In to add comment