acf/shortcode/prevent_access

acf/shortcode/prevent_access

Hook Type: filter

See hook in core

Displaying hooks found in version: advanced-custom-fields.6.3.5

apply_filters('acf/shortcode/prevent_access') is found 1 times:

  • /includes/api/api-template.php line 1075
    1071
    1072
    1073
    1074
    1075
    1076
    1077
    1078
    1079
    1080
    1081
    $value = $field ? $field['value'] : get_field( $atts['field'], $post_id, $atts['format_value'], true );
     
    $field_type = is_array( $field ) && isset( $field['type'] ) ? $field['type'] : 'text';
     
    if ( apply_filters( 'acf/shortcode/prevent_access', false, $atts, $decoded_post_id['id'], $decoded_post_id['type'], $field_type, $field ) ) {
        return;
    }
     
    if ( is_array( $value ) ) {
        $value = implode( ', ', $value );
    }