BakerMan

TEC 3.0 Modify Custom Fields Output

Jul 4th, 2013
323
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.42 KB | None | 0 0
  1. // Many pieces of meta info pass through this filter, not only custom fields
  2. add_filter('tribe_meta_factory_template', 'change_custom_fields', 20, 3);
  3.  
  4. function change_custom_fields($html, $label, $meta) {
  5.     // We are only interested in one specific custom field
  6.     if ('Custom Field Name' !== $label) return $html;
  7.  
  8.     // Swap out the current value for something else
  9.     return str_replace($meta, 'My replacement text', $html);
  10. }
Advertisement
Add Comment
Please, Sign In to add comment