Μενού
/** * Force Amelia to use the frontend language instead of the * logged-in WordPress user's preferred admin language. */ function define_amelia_frontend_locale() { if ( defined( 'AMELIA_LOCALE' ) ) { return; } if ( is_admin() ) { return; } $request_uri = isset( $_SERVER['REQUEST_URI'] ) ? wp_unslash( $_SERVER['REQUEST_URI'] ) : '/'; $path = wp_parse_url( $request_uri, PHP_URL_PATH ); if ( preg_match( '#^/en(?:/|$)#', $path ) ) { define( 'AMELIA_LOCALE', 'en_GB' ); return; } define( 'AMELIA_LOCALE', 'el' ); } define_amelia_frontend_locale();