Adding Content To A Tab Above and/or Below A Form
-
I have created a series of forms Using Admin Page Framwork. Each form is in a different Tab.
I need to create some content (html) within each tab, before, and sometimes after the form entries.
It is my understanding that a tab containing a form starts out:
public function load_customize_my_mcc_tab_menu( $oAdminPage ) {
$this->addSettingFields(
array( ………
Etc.And a tab containing content seems to start out:
function content_my_tabs_my_tab_c( $sContent ) {
return $sContent
. ‘<h3>Tab Content Filter</h3>’
Etc.I have tried dozens of different way to add content to a oAdminPage function with zero luck.
How does one accomplish this?
- The topic ‘Adding Content To A Tab Above and/or Below A Form’ is closed to new replies.