Using home page title instead of site name
-
For anybody wanting to do something of the sort, here is a small snippet to do it. Simply put it into your functions.php
add_filter('bcn_breadcrumb_title', function($title, $type, $id) { if ($type[0] === 'home') { $title = get_the_title(get_option('page_on_front')); } return $title; }, 42, 3);
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Using home page title instead of site name’ is closed to new replies.