This is for the beginners who wants to make a wordpress plugin.
First Step :
To add a plugin name and other details
function herbyfunction() {
add_options_page(“HerbyDesign”, “HerbyDesign”, 1, “HerbyDesign”, “helloworld”);
}
add_action(‘admin_menu’, ‘herbyfunction’);
?>
The post How to make a WordPress Plugin appeared first on Herby Design.