acf/shortcode/allow_in_block_themes_outside_content
acf/shortcode/allow_in_block_themes_outside_content
Appears in: advanced-custom-fields.6.3.5
Hook Type: filter
Displaying hooks found in version: advanced-custom-fields.6.3.5apply_filters('acf/shortcode/allow_in_block_themes_outside_content') is found 1 times:
- /includes/api/api-template.php line 101910151016101710181019102010211022102310241025
}
if
( function_exists(
'wp_is_block_theme'
) && wp_is_block_theme() ) {
// Prevent the ACF shortcode in FSE block template parts by default.
if
( ! doing_filter(
'the_content'
) && ! apply_filters(
'acf/shortcode/allow_in_block_themes_outside_content'
, false ) ) {
return
;
}
}
// Limit previews of ACF shortcode data for users without publish_posts permissions.
$preview_capability
= apply_filters(
'acf/shortcode/preview_capability'
,
'publish_posts'
);