Skip to content

Instantly share code, notes, and snippets.

@akther80
Created March 4, 2024 12:46
Show Gist options
  • Save akther80/c1b77fdee6e42ce3d28f19f76cb372d3 to your computer and use it in GitHub Desktop.
Save akther80/c1b77fdee6e42ce3d28f19f76cb372d3 to your computer and use it in GitHub Desktop.
Bookworm - Change OffCanvas title
add_filter( 'bookworm_offcanvas_header_title', 'bookworm_ch_change_offcanvas_title' );
function bookworm_ch_change_offcanvas_title() {
$title = "Enter Your Tile Here";
return $title;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment