Suppress errors when using global function
I'm using the NinjaForms plugin which defines a Ninja_Forms()
global function.
Although I can call it without problem, I still get a warning/error
Undefined function 'Ninja_Forms'.
If this were a variable I'd use global foo
to suppress that.
How do I do that for a global function - i.e. is there a global
equivalent for functions?