__( ' Insert Scripts', THEMENAME ), 'description' => '', 'groups' => array( array ( // Html to print before the group 'before' => '', // Html to print after the group 'after' => '', // This is the title of the option group. 'title' => __( 'Header Insert', THEMENAME ), // This is the description of the option group. 'description' => __( 'This allows you to insert items, such as javascripts or css, into your themes header between the <head></head> tags.', THEMENAME ), // Define all the fields we want in the option group 'fields' => array( array( 'before' => '

', 'after' => '

', 'name' => '', 'desc' => '', 'id' => 'arixwp_headerinclude', 'type' => 'textarea', // text,textarea,select,radio,checkbox 'default' => '' ) ) ), array ( 'before' => '', 'after' => '', 'title' => __( 'Footer Insert', THEMENAME ), 'description' => __( 'This allows you to insert items, such as javascripts or html, into your themes footer right before the </body> tag.', THEMENAME ), 'fields' => array( array( 'before' => '

', 'after' => '

', 'name' => '', 'desc' => '', 'id' => 'arixwp_footerinclude', 'type' => 'textarea', 'default' => '' ) ) ) ) ); // Load the Form arixwp_adminpage($args); } ?>