Skip to content

Instantly share code, notes, and snippets.

@jpen365
Created November 29, 2016 21:21
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 jpen365/1fe6f1942945696f2c1db88dcde6b812 to your computer and use it in GitHub Desktop.
Save jpen365/1fe6f1942945696f2c1db88dcde6b812 to your computer and use it in GitHub Desktop.
Wrap Twenty Seventeen front page panel titles in spans with ids and padding
jQuery( "h2.entry-title" ).each( function() {
var panelId = jQuery( this ).html().toLowerCase().replace(/\s+/g, "-");
jQuery( this ).wrapInner(function() {
return "<span style='padding-top:96px;' id='" + panelId + "'></span>";
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment