You appear to be a bot. Output may be restricted
Description
Register the _component_version fieldThis is a virtual field used to display the current component version. The field should be registered for each object type where we can determine the plugin/theme.
Usage
oik_register_component_version_field();
Parameters
Returns
voidTO DO
For some post types we also need the virtual "_component" field.Source
File name: oik-shortcodes/oik-shortcodes.phpLines:
1 to 11 of 11
function oik_register_component_version_field() { $field_args = array( "#callback" => "oik_component_version" , "#parms" => null , "#plugin" => "oik-shortcodes" , "#file" => "shortcodes/oik-component-version.php" , "#form" => false , "#hint" => "virtual field" ); bw_register_field( "_component_version", "virtual", "Version", $field_args ); }View on GitHub