Your IP : 216.73.216.111


Current Path : /var/www/ooareogundevinitiative/wp-content/plugins/brizy/compatibilities/
Upload File :
Current File : /var/www/ooareogundevinitiative/wp-content/plugins/brizy/compatibilities/nc-easywp.php

<?php

class Brizy_Compatibilities_NcEasywp {

	public function __construct() {
		if ( class_exists( '\WPNCEasyWP\Http\Varnish\VarnishCache' ) ) {
			add_action( 'brizy_before_send_asset', [ $this, 'before_send_asset' ] );
		}
	}

	public function before_send_asset( $post_id ) {
		do_action( 'edit_post', $post_id, get_post( $post_id ) );
	}
}