I have this JS function named as “myjsfunction()”.
function myjsfunction() {
jQuery('#html_admin_show').hide();
jQuery('#html_admin_edit').show();
}
One limitation is that I cannot edit the original JS function like to put some PHP tags, etc.
How is it possible to call this JS function inside a WordPress do_action hook?
I’m preferring to add it as third parameter because I’m already using the second parameter, so something like:
do_action('myhelp', 'mysecondfunction', 'myjsfunction');
But it is not showing the element #html_admin_edit when the page runs. Any ideas how to call this function?
Thanks.
First, your callback must be PHP:
Second, you can add multiple callbacks to one action:
Now, you can call
do_action()
without parameter â¦â¦ and both callbacks will be executed.
I reply to your comment: You can use just one callback:
You have to use a rather abstract callback then, and accept more parameters:
Now you can pass up to 99 function names, and all of them will be executed for that action.