# give/4.16.8.1/src/ThirdPartySupport/Polylang/Helpers/Polylang.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.8.1. 27 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.8.1/code/src/ThirdPartySupport/Polylang/Helpers/Polylang.php
- Raw: https://pluginprobe.com/plugins/give/4.16.8.1/raw/src/ThirdPartySupport/Polylang/Helpers/Polylang.php
- Modified: 2025-02-26T22:53:50+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/give/4.16.8.1/code/src/ThirdPartySupport/Polylang/Helpers/Polylang.php#L10-L20`.

```php
<?php

namespace Give\ThirdPartySupport\Polylang\Helpers;

/**
 * @since 3.22.0
 */
class Polylang
{
    /**
     * @since 3.22.0
     */
    public static function getLocale($field = 'slug'): string
    {
        $locale = get_locale();

        if (function_exists('pll_current_language') && function_exists('PLL')) {
            $pllCurrentLangCode = pll_current_language($field);
            $pllCurrentLang = PLL()->model->get_language($pllCurrentLangCode);

            $locale = $pllCurrentLang && $pllCurrentLang->locale != $locale ? $pllCurrentLang->locale : $locale;
        }

        return $locale;
    }
}

```
