Created
March 4, 2024 12:46
-
-
Save akther80/c1b77fdee6e42ce3d28f19f76cb372d3 to your computer and use it in GitHub Desktop.
Bookworm - Change OffCanvas title
This file contains hidden or 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
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