使用toscho展示的wp\\u cache\\u delete()技术,您还必须确保您的选项未处于自动加载状态。如果您的选项是自动加载的,它将是alloptions
缓存,以便您无法单独清除它。
因此,如果要从缓存中清除选项,请确保在设置/更新选项时使用以下格式:
update_option( \'my_key\', \'my val\', false ); // False being the autoload parameter
add_option( \'my_key\', \'my val\', null, false ); // null is a deprecated argument.
update_option() documentation