Skip to content

Instantly share code, notes, and snippets.

@karki-dennis
Created May 26, 2016 10:28
Show Gist options
  • Save karki-dennis/f7a88c61958bf28b417ba7c6a0009705 to your computer and use it in GitHub Desktop.
Save karki-dennis/f7a88c61958bf28b417ba7c6a0009705 to your computer and use it in GitHub Desktop.
Replace Back text by li text in wordpress with foundation menu
$(document).foundation();
$(".menu-item-has-children").each(function () {
var str = $(' > a', this).text();
$(this).children('.sub-menu').children('.js-drilldown-back').children('a').html(str);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment