Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter('blocksy:header:logo:url', function ($home_page) {
- // Check if we are on a page with a specific slug
- if (is_page('your-page-slug')) {
- // If we are on a page with the specified slug, return the new logo URL
- return 'https://my-custom-url.com';
- }
- // If we are not on a page with the specified slug, return the original logo URL
- return $home_page;
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement