Did you tried that db cache plugin? did wp engine told you what are they using to give you those stats?
Thanks
I’m building a website that uses acf heavily… and was just wondering the same… I was thinking on maybe using something like DB Cache Reload https://github.com/ivankristianto/DB-Cache-Reloaded-Fix
Have you tried it? which tool are using in that screenshot?
this saves the date as 01122014, how can I make it display “Monday 13 January 2014”
this code did the trick
<?php $today = date("Ymd");?>
<?php $loop = new WP_Query( array(
'post_type' => 'reports',
'posts_per_page' => 5,
'meta_key' => 'date',
'meta_compare' => '>=',
'meta_value' => $today,
'orderby' => 'meta_value_num',
'order' => 'ASC'
) ); ?>
<?php while ($loop->have_posts()) : $loop->the_post(); ?>
// do stuff
<?php endwhile; ?>
this code does the trick just in case someone needs it
<?php $dates = DateTime::createFromFormat('Ymd', get_field('date_picker'));
echo $dates->format('l'); ?>
This reply has been marked as private.