inovve

Polylang shortcode

Oct 11th, 2019
274
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. //add this to functions.php in theme folder
  2.  
  3. function polylang_shortcode() {
  4.     ob_start();
  5.     pll_the_languages(array('show_flags'=>1,'show_names'=>0));
  6.     $flags = ob_get_clean();
  7.     return $flags;
  8. }
  9. add_shortcode( 'polylang', 'polylang_shortcode' );
Advertisement
Add Comment
Please, Sign In to add comment