Skip to content

Instantly share code, notes, and snippets.

@lloc
Created July 19, 2012 08:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lloc/3141577 to your computer and use it in GitHub Desktop.
Save lloc/3141577 to your computer and use it in GitHub Desktop.
Code zum Artikel "Multisite Language Switcher ins Menü einbauen" Part 3
<?php
function my_msls_link_create() {
return new MyMenuMslsItem();
}
add_filter( 'msls_link_create', 'my_msls_link_create' );
class MyMenuMslsItem extends MslsLink {
protected $format_string = '<img src="{src}" alt="{alt}"/> <strong>{txt}</strong>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment