Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@xnau
Last active June 3, 2018 20:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xnau/c7d3d48a80f5c182b4545f16c94f3e8b to your computer and use it in GitHub Desktop.
Save xnau/c7d3d48a80f5c182b4545f16c94f3e8b to your computer and use it in GitHub Desktop.
shows how to disable Participants Database synchronizing the php timezone with the WordPress timezone
<?php
/**
* Plugin Name: PDB Defeat Timezone Sync
* Description: disables Participants Database synchronizing the php timezone with the WordPress timezone
*/
add_filter( 'pdb-php_timezone_sync', function () { return false; } );
@xnau
Copy link
Author

xnau commented Jun 3, 2018

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment