Templates
Creating templates
<?php
namespace HivePress\Templates;
use HivePress\Helpers as hp;
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;
class Foo_Bar extends Page_Wide {
public function __construct( $args = [] ) {
$args = hp\merge_trees(
[
'blocks' => [
'page_content' => [
'blocks' => [
'listing_search_form' => [
'type' => 'listing_search_form',
'_order' => 123,
],
'listings' => [
'type' => 'listings',
'number' => 9,
'columns' => 3,
'_order' => 321,
],
],
],
],
],
$args
);
parent::__construct( $args );
}
}
Customizing templates
Last updated