Forums
-
- Forum
- Posts
-
- Installation
- 28,424
- Troubleshooting
- 62,413
- Themes
- 10,413
- Plugins
- 15,331
- Requests & Feedback
- 14,958
- Showcase
- 3,255
-
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..