Sacconi69

//SHORTCODE DESCRIZIONE IN TEDESCO

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