'ffffff', 'default-image' => get_theme_file_uri( '/public/images/header-image.jpg' ), 'height' => 1200, 'max-width' => 2000, 'width' => 2000, 'flex-height' => false, 'flex-width' => false, ] ); register_default_headers( array( 'header-image' => array( 'url' => '%s/public/images/header-image.jpg', 'thumbnail_url' => '%s/public/images/header-image.jpg', 'description' => esc_html__( 'Header Image', 'camaraderie' ), ), ) ); } ); /** * Registers custom templates with WordPress. * * @since 1.0.0 * @access public * @param object $templates * @return void */ add_action( 'backdrop/templates/register', function( $templates ) { $templates->add( 'template-home.php', [ 'label' => esc_html__( 'Home', 'camaraderie' ) ] ); $templates->add( 'template-left-sidebar.php', [ 'label' => esc_html__( 'Left Sidebar', 'camaraderie' ) ] ); $templates->add( 'template-right-sidebar.php', [ 'label' => esc_html__( 'Right Sidebar', 'camaraderie' ) ] ); } );