11 | | add_action( 'init', array( $this, 'init' ), 11 ); // after WCCSP_Settings::init() |
12 | | add_action( 'wp_enqueue_scripts', array( $this, 'manage_plugin_theme_stylesheets' ), 99 ); // (hopefully) after all plugins/themes have enqueued their styles |
13 | | add_action( 'wp_head', array( $this, 'render_dynamic_styles' ) ); |
14 | | add_filter( 'template_include', array( $this, 'override_theme_template' ) ); |
15 | | add_action( 'template_redirect', array( $this, 'disable_jetpacks_open_graph' ) ); |
16 | | add_action( 'admin_bar_menu', array( $this, 'admin_bar_menu_item' ), 1000 ); |
17 | | add_action( 'admin_head', array( $this, 'admin_bar_styling' ) ); |
18 | | add_action( 'wp_head', array( $this, 'admin_bar_styling' ) ); |
19 | | add_action( 'admin_notices', array( $this, 'block_new_post_admin_notice' ) ); |
20 | | add_filter( 'get_post_metadata', array( $this, 'jetpack_dont_email_post_to_subs' ), 10, 4 ); |
| 11 | add_action( 'init', array( $this, 'init' ), 11 ); // after WCCSP_Settings::init() |
| 12 | add_action( 'wp_enqueue_scripts', array( $this, 'manage_plugin_theme_stylesheets' ), 99 ); // (hopefully) after all plugins/themes have enqueued their styles |
| 13 | add_action( 'wp_head', array( $this, 'render_dynamic_styles' ) ); |
| 14 | add_filter( 'template_include', array( $this, 'override_theme_template' ) ); |
| 15 | add_action( 'template_redirect', array( $this, 'disable_jetpacks_open_graph' ) ); |
| 16 | add_filter( 'rest_authentication_errors', array( $this, 'disable_rest_endpoints' ) ); |
| 17 | add_action( 'admin_bar_menu', array( $this, 'admin_bar_menu_item' ), 1000 ); |
| 18 | add_action( 'admin_head', array( $this, 'admin_bar_styling' ) ); |
| 19 | add_action( 'wp_head', array( $this, 'admin_bar_styling' ) ); |
| 20 | add_action( 'admin_notices', array( $this, 'block_new_post_admin_notice' ) ); |
| 21 | add_filter( 'get_post_metadata', array( $this, 'jetpack_dont_email_post_to_subs' ), 10, 4 ); |