Skip to content

Instantly share code, notes, and snippets.

@nielslange
Last active February 18, 2017 14:11
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 nielslange/54c014617285d0a88c43ed6a8fb721ab to your computer and use it in GitHub Desktop.
Save nielslange/54c014617285d0a88c43ed6a8fb721ab to your computer and use it in GitHub Desktop.
Add page slug as id to widget title
<?php
//* Add page slug as id to widget title
add_filter('widget_title', 'add_slug_id_to_widget_title', 15, 3);
function add_slug_id_to_widget_title($title, $instance, $args){
$page = get_page_by_title($title);
$title = sprintf('<span id="%s">%s</span>', $page->post_name, $title);
return $title;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment