Last active
July 24, 2024 18:14
-
-
Save QWp6t/ba2ba80c1755b840226f to your computer and use it in GitHub Desktop.
Adds ACF Field Group location rule for Post Type Support.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: Field Group Location: Post Type Supports | |
* Plugin URI: http://qwp6t.me/acf-post-type-supports | |
* Description: Adds ACF Field Group location rule for Post Type Support. NOTE: You must first declare the supported feature in your theme. | |
* Version: 1.0.0 | |
* Author: QWp6t | |
* Author URI: http://qwp6t.me | |
* License: MIT License | |
*/ | |
add_filter('acf/location/rule_types', function ($choices) { | |
$choices[__('Post', 'acf')]['post_type_supports'] = __('Post Type Supports', 'qwp6t'); | |
return $choices; | |
}); | |
add_filter('acf/location/rule_values/post_type_supports', function ($choices = []) { | |
foreach ($GLOBALS['_wp_post_type_features'] as $post_type) { | |
foreach ($post_type as $feature => $args) { | |
$choices[$feature] = $feature; | |
} | |
} | |
$choices = array_unique($choices); | |
asort($choices); | |
return $choices; | |
}, 10, 1); | |
add_filter('acf/location/rule_match/post_type_supports', function ($match, array $rule, array $options) { | |
if (!$options['post_id'] || $match) { | |
return false; | |
} | |
$post_type = $options['post_type'] ?: get_post_type($options['post_id']); | |
$match = post_type_supports($post_type, $rule['value']); | |
return ($rule['operator'] == "!=") ? !$match : $match; | |
}, 10, 3); |
🎵 did you ever know that you're my hero
@QWp6t I don't think I'm fully understanding the use case. Could you elaborate on the advantages of using this method versus using multiple rules based on Post Type?
For example if both Posts and Pages supported hero, could I not create the same result with two rules for "If Post Type is equal to Post" and "If Post Type is equal to Page"?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this somewhere in your theme...
The
hero
designation is arbitrary. Just make up a name for whatever feature you're creating. Typically you would want it to correspond to the Field Group name in ACF. Hero was just the example I initially gave.