1. ACF code (inside function.php) after installing the ACF plugin (used for repeater fields etc.)
[pastacode manual=”%C2%A0%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3Eif(%20function_exists(‘acf_add_options_page’)%20)%20%7B%0A%C2%A0%0A%C2%A0%C2%A0%20%C2%A0%24page%20%3D%20acf_add_options_page(array(%0A%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0’page_title’%20%C2%A0%C2%A0%20%C2%A0%3D%3E%20’Header’%2C%0A%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0’menu_title’%20%C2%A0%C2%A0%20%C2%A0%3D%3E%20’Header%20Settings’%2C%0A%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0’menu_slug’%20%C2%A0%C2%A0%20%C2%A0%3D%3E%20’header-settings’%2C%0A%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0’capability’%20%C2%A0%C2%A0%20%C2%A0%3D%3E%20’edit_posts’%2C%0A%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0’redirect’%20%C2%A0%C2%A0%20%C2%A0%3D%3E%20false%0A%C2%A0%C2%A0%20%C2%A0))%3B%0A%C2%A0%0A%C2%A0%C2%A0%20%C2%A0%24page%20%3D%20acf_add_options_page(array(%0A%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0’page_title’%20%C2%A0%C2%A0%20%C2%A0%3D%3E%20’Homepage’%2C%0A%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0’menu_title’%20%C2%A0%C2%A0%20%C2%A0%3D%3E%20’Homepage%20Settings’%2C%0A%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0’menu_slug’%20%C2%A0%C2%A0%20%C2%A0%3D%3E%20’homepage-settings’%2C%0A%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0’capability’%20%C2%A0%C2%A0%20%C2%A0%3D%3E%20’edit_posts’%2C%0A%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0’redirect’%20%C2%A0%C2%A0%20%C2%A0%3D%3E%20false%0A%C2%A0%C2%A0%20%C2%A0))%3B%0A%0A%7D%3C%2Fspan%3E” provider=”manual” lang=”php”/]
 2. Custom post Items:
[pastacode manual=”%2F%2F%20To%20make%20a%20new%20custom%20post%2Cadd%20in%20function.php%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3Efunction%20create_posttype()%20%7B%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%C2%A0%20register_post_type(%20’movies’%2C%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%20array(%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%20’labels’%20%3D%3E%20array(%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%20’name’%20%3D%3E%20__(%20’%3Cspan%20style%3D%22color%3A%23ff0000%3B%22%3EMovies%3C%2Fspan%3E’%20)%2C%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%20’singular_name’%20%3D%3E%20__(%20’%3Cspan%20style%3D%22color%3A%23ff0000%3B%22%3EMovie%3C%2Fspan%3E’%20)%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%20)%2C%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%20’public’%20%3D%3E%20true%2C%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%20’has_archive’%20%3D%3E%20true%2C%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%20’rewrite’%20%3D%3E%20array(‘slug’%20%3D%3E%20’%3Cspan%20style%3D%22color%3A%23ff0000%3B%22%3Emovies%3C%2Fspan%3E’)%2C%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%20)%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%C2%A0%20)%3B%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0%7D%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3Eadd_action(%20’init’%2C%20’create_posttype’%20)%3B%3C%2Fspan%3E%0A%0A%0A%2F%2Fto%20display%20add%20in%20your%20post%20or%20page%0A%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%3C%3Fphp%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%C2%A0%20%24query%3Dnew%20WP_Query(‘post_type%3D%3Cspan%20style%3D%22color%3A%23ff0000%3B%22%3Emovies%3C%2Fspan%3E%26post_per_page%3D4’)%3B%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%C2%A0%20while(%24query%20-%3E%20have_posts())%3A%20%24query%20-%3E%20the_post()%3B%20%3F%3E%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%3C%3Fphp%20the_post_thumbnail()%3B%20%3F%3E%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%3C%3Fphp%20endwhile%3B%20%3F%3E%0A%3C%2Fspan%3E” provider=”manual” lang=”php”/]
3. show posts by category using ajax on click of links
[pastacode manual=”%2F%2F%20header%20code%0A%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%3Cscript%20type%3D%22text%2Fjavascript%22%3E%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3Evar%20ajaxurl%20%3D%20’%3C%3Fphp%20echo%20admin_url(‘admin-ajax.php’)%3B%20%3F%3E’%3B%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%3C%2Fscript%3E%3C%2Fspan%3E%0A%0A%2F%2F%20footer%20code%0A%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%3Cscript%20src%3D%22http%3A%2F%2Fajax.googleapis.com%2Fajax%2Flibs%2Fjquery%2F1.11.2%2Fjquery.min.js%22%3E%3C%2Fscript%3E%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%3Cfooter%3E%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0%3Cscript%20type%3D%22text%2Fjavascript%22%3E%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%24(document).ready(function(event)%20%7B%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0%3C%2Fspan%3E%0A%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0%24(%22.cat-item%20a%22).click(%20function%20(event)%20%7B%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0event.preventDefault()%3B%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0alert(%22jhghd%22)%3B%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0var%20href%20%3D%20%24(this).attr(‘href’)%3B%3C%2Fspan%3E%0A%0A%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0%C2%A0%20%2F%2F%20var%20url%20%3D%20document.URL%3B%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0var%20id%20%3D%20href.substring(href.lastIndexOf(‘%3D’)%20%2B1)%3B%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0alert(id)%3B%20%2F%2F%20234234234%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0%2F%2Falert(href)%3B%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3EjQuery.ajax(%7B%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%20type%20%3A%20%22post%22%2C%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%20url%20%3A%20ajaxurl%2C%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%20data%20%3A%20%7Baction%3A%20%22my_action%22%2C%20cat_id%20%3A%20id%7D%2C%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%20success%3A%20function(response)%20%7B%3C%2Fspan%3E%0A%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%20%24(‘%23tab1’).html(”)%3B%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%20%2F%2Ftab1%20is%20the%20id%20of%20div%20in%20which%20you%20want%20to%20show%20the%20data.%20this%20line%20will%20clear%20the%20contant%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%20%24(‘%23tab1’).html(response)%3B%C2%A0%C2%A0%C2%A0%20%2F%2Fthis%20line%20will%20provide%20response%20to%20the%20div%20with%20id%20tab1.%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%20%C2%A0%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%20%7D%2C%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%20%7D)%3B%C2%A0%C2%A0%C2%A0%C2%A0%20%2F%2Fjquery.ajax%20function%20ends%20here.%20%3C%2Fspan%3E%0A%0A%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0%7D)%3B%C2%A0%C2%A0%C2%A0%20%2F%2Fclick%20function%20ends%20here.%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%20%7D)%3B%C2%A0%C2%A0%C2%A0%20%2F%2Fready%20function%20ends%20here.%3C%2Fspan%3E%0A%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%3C%2Fscript%3E%3C%2Fspan%3E%0A%0A%0A%2F%2F%20function%20code%0A%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3Eadd_action(%20’wp_ajax_my_action’%2C%20’my_action_callback’%20)%3B%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3Eadd_action(%20’wp_ajax_nopriv_my_action’%2C%20’my_action_callback’%20)%3B%3C%2Fspan%3E%0A%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3Efunction%20my_action_callback()%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%7B%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0global%20%24wpdb%3B%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0%20extract(%24_POST)%3B%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0%20%3C%2Fspan%3E%0A%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0%20%2F%2Fecho%20%24cat_id.%22sfghf%22%3B%3C%2Fspan%3E%0A%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%24the_query%20%3D%20new%20WP_Query(%20%22cat%3D%24cat_id%22%20)%3B%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%3F%3E%3C%2Fspan%3E%0A%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%3C%3Fphp%20if%20(%20%24the_query-%3Ehave_posts()%20)%20%3A%20%3F%3E%3C%2Fspan%3E%0A%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0%3C!–%20pagination%20here%20–%3E%3C%2Fspan%3E%0A%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0%3C!–%20the%20loop%20–%3E%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0%3C%3Fphp%20while%20(%20%24the_query-%3Ehave_posts()%20)%20%3A%20%24the_query-%3Ethe_post()%3B%20%3F%3E%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0%3C%3Fphp%20the_title()%3B%20%3F%3E%3C%2Fspan%3E%0A%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0%3C%3Fphp%20endwhile%3B%20%3F%3E%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0%3C!–%20end%20of%20the%20loop%20–%3E%3C%2Fspan%3E%0A%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0%3C!–%20pagination%20here%20–%3E%3C%2Fspan%3E%0A%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0%3C%3Fphp%20wp_reset_postdata()%3B%20%3F%3E%3C%2Fspan%3E%0A%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%3C%3Fphp%20else%20%3A%20%3F%3E%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0%3Cp%3E%3C%3Fphp%20_e(%20’Sorry%2C%20no%20posts%20matched%20your%20criteria.’%20)%3B%20%3F%3E%3C%2Fp%3E%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%3C%3Fphp%20endif%3B%20%3F%3E%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0%20%3C%3Fphp%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0die()%3B%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%7D%0A%3C%2Fspan%3E” provider=”manual” lang=”php”/]
4. show Form data in response using ajax
[pastacode manual=”%2F%2F%20ajax%20function%20%0A%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3Eadd_action(%20’wp_ajax_my_action’%2C%20’my_action_callback’%20)%3B%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3Eadd_action(%20’wp_ajax_nopriv_my_action’%2C%20’my_action_callback’%20)%3B%3C%2Fspan%3E%0A%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3Efunction%20my_action_callback()%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%7B%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0global%20%24wpdb%3B%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0extract(%24_POST)%3B%3C%2Fspan%3E%0A%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0echo%20%24name_1%3B%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0echo%20%24name_2%3B%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0echo%20%24name_3%3B%3C%2Fspan%3E%0A%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0die()%3B%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%7D%3C%2Fspan%3E%0A%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3Efunction%20my_call_back_function()%20%7B%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%C2%A0%20%3F%3E%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%3Cscript%20type%3D%22text%2Fjavascript%22%3E%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%2F%2F%C2%A0%20Inclide%20JQUERY%20liberary%20here%20if%20not%20included%3C%2Fspan%3E%0A%0A%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%24(document).ready(function()%7B%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%20%C2%A0%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%20%2F%2F%20%2Falert(ajaxurl)%3B%3C%2Fspan%3E%0A%0A%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%C2%A0%20%24(%22%23submit_btn%22).click(%20function%20(%20event%20)%20%7B%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0event.preventDefault()%3B%3C%2Fspan%3E%0A%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0alert(‘dsds’)%3B%3C%2Fspan%3E%0A%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0var%20data%20%3D%C2%A0%20%24(%22%23ajax_form%22).serialize()%3B%3C%2Fspan%3E%0A%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%C2%A0%20%2F%2F%20This%20does%20the%20ajax%20request%3C%2Fspan%3E%0A%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%C2%A0%20alert(ajaxurl)%3B%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%C2%A0%20%24.post(%20ajaxurl%2C%20data%2C%20function(data)%20%7B%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%20%2F%2F%20This%20outputs%20the%20result%20of%20the%20ajax%20request%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%20console.log(data)%3B%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%C2%A0%20%7D)%3B%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%C2%A0%20%C2%A0%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0%7D)%3B%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%7D)%3B%3C%2Fspan%3E%0A%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%3C%2Fscript%3E%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%C2%A0%20%3Cform%20id%3D%22ajax_form%22%20%3E%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0%3Cinput%20name%3D%22name_1%22%20%2F%3E%20%3Cbr%2F%3E%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0%3Cinput%20name%3D%22name_2%22%20%2F%3E%20%3Cbr%2F%3E%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0%3Cinput%20name%3D%22name_3%22%20%2F%3E%20%3Cbr%2F%3E%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0%3Cinput%20name%3D%22action%22%20value%3D%22my_action%22%20type%3D%22hidden%22%20%2F%3E%20%3Cbr%2F%3E%3C%2Fspan%3E%0A%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%20%C2%A0%C2%A0%C2%A0%20%C2%A0%3Cinput%20name%3D%22submit%22%20type%3D%22submit%22%C2%A0%20id%3D%22submit_btn%22%3E%20%3Cbr%2F%3E%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%C2%A0%C2%A0%C2%A0%20%3C%2Fform%3E%3C%2Fspan%3E%0A%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%3C%3Fphp%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3E%7D%3C%2Fspan%3E%0A%3Cspan%20style%3D%22color%3A%233366ff%3B%22%3Eadd_shortcode(%20’wp_ajax_example_ajax_request’%2C%20’my_call_back_function’%20)%3B%3C%2Fspan%3E” provider=”manual” lang=”php”/]