Forums
-
- Forum
- Posts
-
- Installation
- 28,535
- Troubleshooting
- 62,775
- Themes
- 10,444
- Plugins
- 15,385
- Requests & Feedback
- 14,988
- Showcase
- 3,257
-
I’m not sure I understand your question exactly…
Any function you declare in a plugin is callable from anywhere else in that plugin. So…
function myplugin_two()
{
myplugin_base('two');
echo '<br />Some more text<br />';
also_tab2();
}
etc.. etc..