gdcpt_metabox_$metabox_field_after
- $metabox: code for the meta box from the meta box editor.
Action runs after each meta box custom field.
If the meta box has code ‘movie’, action name would be: gdcpt_metabox_movie_field_after.
Example:
[php]function metabox_movie_field_after() {
// do something
}
add_action(‘gdcpt_metabox_movie_field_after’, ‘metabox_movie_field_after’);[/php]
Comments