Sacconi69

$category

Oct 11th, 2024
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. add_shortcode('description', 'translate_desc');
  2. function translate_desc() {
  3. global $post;
  4. $lang = substr( get_locale(), 0, 2);
  5. $category = get_the_category( $post->ID )[0]->name;
  6. $names_trans = array(
  7. 350 => __('Apartment', 'sacconicase'),
  8. 354 => __('Apartment in villa', 'sacconicase'),
  9. 355 => __('Penthouse', 'sacconicase'),
  10.  
  11. 357 => __('Bungalow', 'sacconicase'),
  12.  
  13. 356 => __('Studio', 'sacconicase'),
  14.  
  15. 367 => __('Villa', 'sacconicase'),
  16.  
  17. 351 => __('Terraced villa', 'sacconicase'),
  18.  
  19. );
  20.  
  21. $terms_destinazione = $names_trans[ get_the_terms( $post->ID, 'tipologia') [0]->term_id ] ;
Advertisement
Add Comment
Please, Sign In to add comment