This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// post meta for previews | |
class wp_preview_meta { | |
private $doing_preview = false; | |
public function __construct() { | |
add_filter( 'add_post_metadata', array( $this, 'add' ), 10, 5 ); | |
add_filter( 'update_post_metadata', array( $this, 'update' ), 10, 5 ); |