Skip to content

Instantly share code, notes, and snippets.

@hivepress
Created April 27, 2022 10:08
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hivepress/a1f3df3bce636c317fb6bd2c5643f35d to your computer and use it in GitHub Desktop.
Save hivepress/a1f3df3bce636c317fb6bd2c5643f35d to your computer and use it in GitHub Desktop.
Add custom content to the listing search page sidebar #hivepress #templates
<?php
add_filter(
'hivepress/v1/templates/listings_view_page',
function( $template ) {
return hivepress()->helper->merge_trees(
$template,
[
'blocks' => [
'page_sidebar' => [
'blocks' => [
'custom_name_here' => [
'type' => 'content',
'content' => 'custom text here',
'_order' => 123,
],
],
],
],
]
);
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment