Forked from nicomollet/polylang-langswitcher-shortcode.php
Created
September 10, 2019 14:15
-
-
Save ulziibat-n/e879c1c74b404d2120fe9623cf4e2bee to your computer and use it in GitHub Desktop.
Polylang shortcode for lang switcher
This file contains 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
<?php | |
/** | |
* Polylang Shortcode - https://wordpress.org/plugins/polylang/ | |
* Add this code in your functions.php | |
* Put shortcode [polylang_langswitcher] to post/page for display flags | |
* | |
* @return string | |
*/ | |
function custom_polylang_langswitcher() { | |
$output = ''; | |
if ( function_exists( 'pll_the_languages' ) ) { | |
$args = [ | |
'show_flags' => 0, | |
'show_names' => 1, | |
'echo' => 0, | |
]; | |
$output = '<ul class="polylang_langswitcher">'.pll_the_languages( $args ). '</ul>'; | |
} | |
return $output; | |
} | |
add_shortcode( 'polylang_langswitcher', 'custom_polylang_langswitcher' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment