Last active
September 19, 2018 14:42
-
-
Save ajuliano/bd0f0351c94ac61b2527ee738e675096 to your computer and use it in GitHub Desktop.
polylang och ACF Options Page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Få Polylang och ACF Options Page att fungera | |
* | |
* http://www.advancedcustomfields.com/resources/multilingual-custom-fields/ (Längst ned på sidan) | |
*/ | |
add_filter('acf/settings/default_language', function( $language ) { | |
if ( function_exists( 'pll_current_language' ) ) { | |
return 'sv'; | |
} | |
return; | |
}); | |
add_filter( 'acf/settings/current_language', function( $language ) { | |
if ( function_exists( 'pll_current_language' ) ) { | |
return pll_current_language(); | |
} | |
return; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment