This repository was archived by the owner on Jul 26, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 8
Hooks
Mattias edited this page Oct 13, 2020
·
2 revisions
Add html or php code before/after tab or table
add_action('wpts_tab_[tab key here]_before' , 'general');
function general(){
// code here
}
add_action('wpts_tab_[tab key here]_after' , 'general');
function general(){
// code here
}
add_action('wpts_tab_[tab key here]_table_before' , 'general_table');
function general_table(){
// code here
}
Include tr/td to follow the table structure.
add_action('wpts_tab_[tab key here]_table_after' , 'general_table');
function general_table(){
// code here
}
Include tr/td to follow the table structure.