PUM_Newsletters::init()


Description Description


Source Source

File: classes/Newsletters.php

	public static function init() {
		if ( doing_action( 'plugins_loaded' ) || ! did_action( 'plugins_loaded' ) ) {
			add_action( 'plugins_loaded', array( __CLASS__, 'delayed_init' ), 11 );
		} else {
			self::delayed_init();
		}
	}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.