This function registers new layouts by modifying the global $_genesis_layouts variable.
Usage
<?php genesis_register_layout( $layout_name, $args ); ?>
Parameters
$layout_name
(required) The name of the layout.
$args
An array of Arguments.
Arguments
label
Actual name that is displayed in the admin area to select a layout.
Default: No Label Selected
img
Image to be displayed when selecting layout on post page.
Default: ‘GENESIS_ADMIN_IMAGES_URL . ‘/layouts/none.gif
Example
genesis_register_layout( 'topbar-content-bottombar', array(
'label' => 'Topbar/Content/Bottombar',
'img' => CHILD_URL . '/images/stcsb.gif',
) );