Support

Account

Home Forums Add-ons Options Page Copy options page to new post after selecting category Reply To: Copy options page to new post after selecting category

  • is “8” the term ID of the category?

    
    //https://www.advancedcustomfields.com/resources/acf-update_value/
    add_filter('acf/update_value/field=general_air_pressure', 'copy_pressure_to_cat', 20, 3);
    function copy_pressure_to_cat($value, $post_id, $field) {
      if ($post_id == 'options') {
        update_field('general_air_pressure', $value, 'term_8');
      }
      return $value;
    }