You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dates and translated strings doesn't work out of the box.
/** * Filters the locale ID of the WordPress installation based on Polylang language. * * @param string $locale The locale ID. */functionset_correct_language( $locale ) {
// Return current language or original language.returnfunction_exists( 'pll_current_language' ) ? pll_current_language( 'locale' ) : $locale;
}
add_filter( 'locale', __NAMESPACE__ . '\set_correct_language' );
Somehow we need to do this again :)
The text was updated successfully, but these errors were encountered:
Dates and translated strings doesn't work out of the box.
Somehow we need to do this again :)
The text was updated successfully, but these errors were encountered: