Why is the Ajax heartbeat included in my cached frontend pages? Is it OK to get rid of it?

I recently thought I’d protect a WP site’s /wp-admin folder with Apache’s basic auth to provide a crude but somewhat effective additional layer of security (as a second line of defense should the WP install accidentally go out of date or an exploit emerge). However when I did this, I immediately noticed that the site’s … Read more

Responsive Images – Generating multiple images from Theme Customizer control upload?

So, after poking around in the code it looks like the filter image_make_intermediate_size is not called by the various WP_Customize_Control() classes at either WP_Customize_Image_Control() or it’s parent WP_Customize_Upload_Control(). I’m looking to auto-generate images of various sizes, for responsive image serving and I need to execute the image_make_intermediate_size() function with some custom sizes that are specific … Read more

How to access global $wp_meta_boxes variable on front-end?

Is there a way to take the global $wp_meta_boxes variable to be used in the front-end? Currently the $wp_meta_boxes is accessible on specific admin pages only. I’ve found a similar question about this. Its solution is to get the data via the do_meta_boxes hook, but I would like to access the variable without JS/AJAX, and … Read more

Datepicker not supporting timepicker

The datepicker is working perfect but datetimepicker is not working at front side in wordpress-4.6.1. Edit I have got this in static html using bootstrap-datetimepicker.js but i don’t want to use this picker in wordpress. I want to achive this only using wordpress datepicker. Is it possible? HTML <input type=”text” name=”date1″ id=”date1″ value=”” /> <input … Read more