Du kannst folgende Funktion in der functions.php deines Theme einfügen.
function add_cache_control_header() { if (!is_admin()) { header("Cache-Control: max-age=3600, must-revalidate"); } } add_action('send_headers', 'add_cache_control_header');