Sacconi69

// NUOVO FOOTER BILINGUE

Sep 29th, 2024
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. // NUOVO FOOTER BILINGUE
  2.  
  3. add_shortcode('footer', 'translate_footer');
  4. function translate_footer() {
  5. $german = '<a href="https://de.test.sacconicase.com/kontakt/">Kontakt</a>'.'<br>'.'<a href="https://de.test.sacconicase.com/agentur/">Agentur</a>' ;
  6.  
  7. $english = '<a href="https://en.test.sacconicase.com/contact/">Contact</a>'.'<br>'.'<a href="https://en.test.sacconicase.com/about-us/">About us</a>' ;
  8.  
  9. if ( 'de_DE' == get_locale() && ! empty( $german )){
  10. return $german;
  11.  
  12. if ( 'en_EN' == get_locale() && ! empty( $english )){
  13. return $english;
  14.  
  15. } else {
  16. return '<a href="https://test.sacconicase.com/contatti/">Contatti</a>'.'<br>'.'<a href="https://test.sacconicase.com/agenzia/">Agenzia</a>' ;
  17. }else {
  18. return '<a href="https://test.sacconicase.com/contatti/">Contatti</a>'.'<br>'.'<a href="https://test.sacconicase.com/agenzia/">Agenzia</a>' ;
  19. }
  20. }
  21.  
Advertisement
Add Comment
Please, Sign In to add comment