Created
September 16, 2017 00:10
-
-
Save JulioPotier/8425920d137dbbc56c47aa3537abb082 to your computer and use it in GitHub Desktop.
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
if ( defined( 'DOING_AJAX' ) && DOING_AJAX && isset( $_POST['action'] ) && 'menu-quick-search' == $_POST['action'] ) { | |
add_filter( 'wp_setup_nav_menu_item', 'sp_wp_setup_nav_menu_item' ); | |
function sp_wp_setup_nav_menu_item( $menu_item ) { | |
if ( isset( $menu_item->post_title ) ) { | |
$menu_item->post_title = $menu_item->post_title . ' (' . pll_get_post_language( $menu_item->ID ) . ')'; | |
} | |
return $menu_item; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment