Hi again !
I would like to add region and description on frontend, like a category header page.
I saw this topic :
Add the region title and description on frontend - General / Geolocation - HivePress Community
Is the same request, but i don鈥檛 see the entire solution.
My goal :
Add this header to the region page
For example : this page : Provence-Alpes-C么te d鈥橝zur Archives - Annuaire Drone
How can i modify this page ? I know that the page-header.php in the rentalhive theme is use for the category header, but i don鈥檛 know how to apply it on the region page.
I know that with this snippet, i can change the title :
add_filter(
'hivepress/v1/templates/page',
function( $args ) {
if ( is_tax( 'hp_listing_region' ) ) {
$region = get_queried_object();
$args['context']['page_title'] = 'Region: ' . $region->name;
}
return $args;
},
1000
);
but it鈥檚 not the solution for me.
Thank you in advance !