Excluding specific code from a file – php and html, mfunc usage
-
I’ve been messing with this for some time and I simply can not get it to work.
I have a changing title that is taken directly from the database at random.
In this case I obviously don’t want that specific piece of code cached. I’ve been trying different types of mfunc usage according to what I found online but to no avail.
<?php $rand_num = mt_rand(1,100); $currsubtitle = $wpdb->get_var($wpdb->prepare("*query here*",$rand_num)); ?> <h3"><?php echo $currsubtitle ?></h3>
Page cache – Disk Enhanced and Browser cache – Disk are both enabled. Please let me know of any additional information you might require.
I’ve decided to put header.php to be excluded entirely (which is unnecessary and a waste), I’ve also put down:
define('DONOTCACHEPAGE', true); define('DONOTCACHEDB', true);
Just in case in the actual code, and it still doesn’t work.
Any help would be appreciated.
- The topic ‘Excluding specific code from a file – php and html, mfunc usage’ is closed to new replies.