Skip to content

Instantly share code, notes, and snippets.

@plugin-republic
Created September 13, 2021 10:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save plugin-republic/b7fb75928f3232fdaf5daf4b12906dfc to your computer and use it in GitHub Desktop.
Save plugin-republic/b7fb75928f3232fdaf5daf4b12906dfc to your computer and use it in GitHub Desktop.
<?php
/**
* Set unique metadata item ID
*/
function prefix_field_label_item_meta_data( $field_label, $field, $item ) {
$field_label .= '_' . $field['field_id'];
return $field_label;
}
add_filter( 'pewc_field_label_item_meta_data', 'prefix_field_label_item_meta_data', 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment