ACF_Location_Post_Category::match
Matches the provided rule against the screen args returning a bool result.
Method of the class: ACF_Location_Post_Category{}
No Hooks.
Returns
true|false.
Usage
$ACF_Location_Post_Category = new ACF_Location_Post_Category(); $ACF_Location_Post_Category->match( $rule, $screen, $field_group );
- $rule(array) (required)
- The location rule.
- $screen(array) (required)
- The screen args.
- $field_group(array) (required)
- The field group settings.
Changelog
| Since 5.9.0 | Introduced. |
ACF_Location_Post_Category::match() ACF Location Post Category::match code ACF 6.0.4
public function match( $rule, $screen, $field_group ) {
return acf_get_location_type( 'post_taxonomy' )->match( $rule, $screen, $field_group );
}