addSettingSections( $this->sPageSlug, // the target page slug array( 'section_id' => $this->sSectionID, 'tab_slug' => $this->sTabSlug, 'title' => __( 'Section Title', 'admin-page-framework-loader' ), 'description' => __( 'The section_title field type will be placed in the position of the section title if set. If not set, the set section title will be placed. Only one section_title field is allowed per section.', 'admin-page-framework-loader' ), ) ); // Fields $oFactory->addSettingFields( $this->sSectionID, // the target section ID array( 'field_id' => 'section_title_field', 'type' => 'section_title', 'label' => '

' . __( 'Section Name', 'admin-page-framework-loader' ) . '

', 'attributes' => array( 'size' => 30, ), ) ); } }