This article contains PHP code and is intended for developers. We offer this code as a courtesy, but don't provide support for code customizations or 3rd party development.
When searching for entries by "Entry creation date" or the updated timestamp on the entries list page, entries will now be done in the server timezone. Use this filter to revert to UTC searches.
Usage
add_filter( 'frm_should_search_admin_entries_created_at_in_utc', '__return_true' );
Parameters
- None
Examples
Search entries by creation date in UTC
Use this code example to search for created_at in UTC when searching entries in the backend.
add_filter( 'frm_should_search_admin_entries_created_at_in_utc', '__return_true' );