skip to Main Content

Can I insert data to custom table using ajax in a WordPress plugin?

I am trying to insert data in custom table in wordpress while creating plugin using AJAX. But I failed to do. here is the code of contact.php where I register scripts add_action('wp_enqueue_scripts', 'setting_up_scripts_contact_form_wp'); function setting_up_scripts_contact_form_wp() { wp_register_style( 'contact-custom-style',plugins_url('public/css/style.css', __FILE__) );…

VIEW QUESTION
Back To Top
Search