'text',
'name' => 'post_title',
'size' => 30,
'value' => $post->initial() ? '' : $post->title(),
'id' => 'title',
'spellcheck' => 'true',
'autocomplete' => 'off',
'disabled' =>
current_user_can( 'is_edit_search_form', $post_id ) && 'Default Search Form' !== $post->title() ? '' : 'disabled',
'title' => 'Default Search Form' !== $post->title() ? __( "Search form name", 'ivory-search' ) : __( "Editing the title of Default Search Form is prohibited.", 'ivory-search' ),
);
echo sprintf( '', IS_Admin_Public::format_atts( $posttitle_atts ) );
?>
array(
'title' => __( 'Includes', 'ivory-search' ),
'callback' => 'includes_panel',
),
'excludes' => array(
'title' => __( 'Excludes', 'ivory-search' ),
'callback' => 'excludes_panel',
),
'options' => array(
'title' => __( 'Options', 'ivory-search' ),
'callback' => 'options_panel',
),
);
}
$panels = apply_filters( 'is_editor_panels', $panels );
foreach ( $panels as $id => $panel ) {
$editor->add_panel( $id, $panel['title'], $panel['callback'] );
}
$editor->display();
?>
save_button( $post_id ); ?>