• Resolved Al-Hadee Mohd Roslan

    (@kodeexii)


    Salam n Hola

    Just tested this out.
    Seems like even after using this plugin, data is still stored in the WP Post Meta table.

    Is it supposed to do this?

    Can we not use WP Post Meta when a custom table is used?

Viewing 1 replies (of 1 total)
  • Plugin Author Eduardo Marcolino

    (@eduardomarcolino)

    Yeah, by default the data is still stored in WP Post Meta but you can disable it using acf filter acf/pre_update_value as such:

    add_filter( "acf/pre_update_value", function($default, $value, $post_id, $field)
    {
      if($field[ACF_FICT::SETTINGS_ENABLED]) {
        return false;
      }
    
      return $default;
    }, 10, 4);
Viewing 1 replies (of 1 total)

The topic ‘Is data still stored in WP Post Meta table?’ is closed to new replies.