Import form_csv title and custom field + acf

add_shortcode('form_csv', 'form_csv'); function form_csv(){ if(isset($_POST["Import"])){ $filename=$_FILES["file"]["tmp_name"]; if($_FILES["file"]["size"] > 0) { $file = fopen($filename, "r"); while (($getData = fgetcsv($file, 1000, ",")) !== FALSE) { //echo '<pre>'; //print_r($getData); //echo $getData[0].' '.$getData[1].' '.$getData[2].' '.$getData[6]; //echo "<br>"; // exit; $id = wp_insert_post(array( 'post_status' => 'publish', 'post_type'=>'career_libraries', 'post_title'=>$getData[1], 'post_content'=>$getData[2], )); wp_set_object_terms($id, $getData[6], 'alphabet_cat', true); update_field('field_61dbcf1a3ef7d',$getData[3],$id); //Median Pay update_field('field_61dbcf3b3ef7e',$getData[4],$id); // Entry... Continue Reading →

How to use contact form core php with jquery ajax

HTML Form <!-- .isrequired.error{border-color:red;} .alert{background:#f3f3f3 none repeat scroll 0 0;border:1px solid;border-radius:3px;margin-bottom:10px;padding:10px;} .alert{display:none;} .alert.alert-danger{color:red;} .alert.alert-success{color:green;} --> File: frontend-ajax.js jQuery(document).ready(function() { jQuery(".submit_contact_btn").click(function() { //on focus jQuery("#contact_form .isrequired, #contact_form .isrequired").focus(function(){ jQuery(this).removeClass('error'); }); //on blur jQuery("#contact_form .isrequired, #contact_form .isrequired").blur(function() { if(jQuery(this).val().trim() == '') { jQuery(this).addClass('error'); } else { jQuery(this).removeClass('error'); } }); if(jQuery("#firstname").val().trim() == '' || jQuery("#lastname").val().trim() == '' ||... Continue Reading →

Add Custom Logo in WordPress Admin Login Page

If you want to display a custom logo instead of default WordPress logo in wp-admin login page, you need to add following code into functions.php /*** Change Logo In Admin Login Page With URL And Title ***/ add_action('login_head', 'admin_login_logo'); function admin_login_logo() { $logoImage = get_theme_mod( 'custom_logo' ); $logoUrl = wp_get_attachment_image_src( $logoImage , 'full' ); echo... Continue Reading →

Get specify category + Jquery + Ajax

Template file foreach ( $terms as $term ) : ?> echo '';endif; ?> jQuery(document).ready(function() { /* * Trigger window resize function in javascript */ function ESresize(){ if (typeof (Event) === 'function') { // modern browsers window.dispatchEvent(new Event('resize')); } else { //This will be executed on old browsers and especially IE var resizeEvent = window.document.createEvent('UIEvents'); resizeEvent.initUIEvent('resize',... Continue Reading →

Blog at WordPress.com.

Up ↑