05-04-2020, 07:28 PM
Just started developing a plugin for WordPress, wanted to use some JQuery in the Plugin Admin interface.
How can I do this in a WordPress Plugin PHP file?
please help me
How do I properly include and call JQuery?
For instance, on a normal HTML page I would just include the JQuery library, then call this script:
Code:
$(document).ready(function(){
alert('Hello World!');
});
please help me