wp_stateless_restrict_compatibility

wp_stateless_restrict_compatibility

Hook Type: filter
See hook in action

See hook in core

Displaying hooks found in version: wp-stateless.4.0.3

apply_filters('wp_stateless_restrict_compatibility') is found 1 times:

  • /lib/classes/class-compatibility.php line 41
      protected $is_internal = false;
    
      public function __construct() {
        // Prevent conflict between internal built-in compatibility modules and addon plugins
        $restrict = apply_filters('wp_stateless_restrict_compatibility', false, $this->id, $this->is_internal);
    
        if ($restrict) {
          $this->enabled = false;
          return;
        }
    
    

See this hook used in plugins:

wp_stateless_restrict_compatibility - WordPress Hooks

wp_stateless_restrict_compatibility

wp_stateless_restrict_compatibility

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: wp-stateless.3.4.0

apply_filters('wp_stateless_restrict_compatibility') is found 1 times:

  • /lib/classes/class-compatibility.php line 41
      protected $is_internal = false;
    
      public function __construct() {
        // Prevent conflict between internal built-in compatibility modules and addon plugins
        $restrict = apply_filters('wp_stateless_restrict_compatibility', false, $this->id, $this->is_internal);
    
        if ($restrict) {
          $this->enabled = false;
          return;
        }