Advertisement
fauzanjeg

Get Home URL for Multilanguage

Sep 27th, 2021
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. if ( ! function_exists( 'home_url_multilang' ) ) {
  2.     /**
  3.      * Get Home URL for Multilanguage
  4.      */
  5.     function home_url_multilang( $path = '', $scheme = null ) {
  6.         if ( function_exists( 'pll_home_url' ) ) {
  7.             return pll_home_url( '' ) . $path;
  8.         }
  9.         return home_url( $path, $scheme );
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement