Issues with add_query_arg() not passing a variable

I ended up using a GET method and got rid of add_query_arg() function $homezip = $_GET[“search”]; <form action=”local-concert-listings/” method=”get”> <input id=”address” size=”6″ type=”text” placeholder=”Zipcode” name=”zipcode”/> <div style=”display:none;”> <input id=”volume” size=”1″ name=”miles” value=”70″ placeholder=”70″></input> </div> <input type=”submit” value=”go” name=”SubmitButton” onclick=”codeAddress()” /> </form>

custom post with loading script per single post

What if you completely remove the loadDonateScripts function and just add the conditional before enqueuing the scripts like in the the following: function donate_adding_scripts() { if (is_single()) { global $post; if($post->ID==”8436″){ // only for post Id = 8436 wp_register_script(‘donateParsleyJs’, get_template_directory_uri() . ‘/js/parsley.min.js’, array(‘jquery’),’1.11.1′); wp_enqueue_script(‘donateParsleyJs’); wp_register_script(‘donateParsleyHeJs’, get_template_directory_uri() . ‘/js/he.js’); wp_enqueue_script(‘donateParsleyHeJs’); wp_register_script(‘donateJs’, get_template_directory_uri() . ‘/js/donateJs.js’, array(‘jquery’),’1.11.1′, true); … Read more

Update add_image_size

@WisdmLabs is right. For old images you will have to use that plugin to regenerate thumbnails. For new images which you will upload it will respect the 600 height mentioned in child theme’s functions.php file.