Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #30501, comment 32


Ignore:
Timestamp:
04/21/2015 02:32:41 PM (9 years ago)
Author:
selnomeria
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #30501, comment 32

    initial v1  
    11please, tell the world (all plugins developers, in a big RED NOTICE, that they should disable flushing on every page load...
    22they'd better to use smth like this:
    3 if (get_option("my_checkpoint_12345")) {
     3
     4{{{
     5
     6if (get_option($postype . "_checkpoint_12345")) {
    47   ....flush...
    5    ....delete_option("my_checkpoint_12345");........
     8   ....delete_option($postype . "_checkpoint_12345");........
    69}
     10}}}