get_value(); if ( is_numeric( $field_value ) ) { $compared_value = (int) $compared_value; } return $field_value === $compared_value; } public static function get_operators() { return [ 'equals' => [ 'label' => '=', ], ]; } public static function get_control_type() { return static::get_key(); } public static function is_hidden() { return true; } }