StonehengeCreations

EM - Restore original published date

Oct 2nd, 2018
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1. <?php
  2. /********************
  3. By default Events Manager changes the WP published date to the event date. This snippet restores the original date, which is needed for Google Structured Data (and other things, probably).
  4. ********************/
  5. function stonehenge_em_restore_original_date() {
  6.     remove_filter( 'get_the_date', array( 'EM_Event_Post', 'the_date' ), 10, 3 );
  7. }
  8. add_action( 'init', 'stonehenge_em_restore_original_date' );
Advertisement
Add Comment
Please, Sign In to add comment