Skip to content

Instantly share code, notes, and snippets.

@taninbkk
Last active November 1, 2023 07:55
Show Gist options
  • Star 13 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save taninbkk/f95281b44b3762435777 to your computer and use it in GitHub Desktop.
Save taninbkk/f95281b44b3762435777 to your computer and use it in GitHub Desktop.
Polylang Shortcode
// Polylang Shortcode - https://wordpress.org/plugins/polylang/
// Add this code in your functions.php
// Put shortcode [polylang] to post/page for display flags
function polylang_shortcode() {
ob_start();
pll_the_languages(array('show_flags'=>1,'show_names'=>0));
$flags = ob_get_clean();
return $flags;
}
add_shortcode( 'polylang', 'polylang_shortcode' );
@maitseasi
Copy link

maitseasi commented Sep 6, 2022

Thanks a bunch for this!
Any guess on how to style the dropdown arrow for this? Im trying to replace it with a custom svg, but I couldnt get it with the one i targeted the rest of the menu drop-downs.

.et-menu .menu-item-has-children>a:first-child:after{ content: url(/dropdownarrow.svg); }

I couldnt get the target with inspect and was unable to find it in the plugin files (although im sure it is in there somewhere).

@sarathsivadasan
Copy link

How to set user wise [POLYLANG] in wordpress?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment