Description
Function to invoke when includes/bw_metadata.php is loadedWe create generic meta boxes for fields with a generic function to save fields
Usage
bw_metadata_loaded();Parameters
Returns
voidSource
File name: oik/includes/bw_metadata.phpLines:
1 to 5 of 5
function bw_metadata_loaded() { add_action( 'add_meta_boxes', 'bw_effort_meta_boxes', 10, 2 ); /* Do something with the data entered */ add_action( 'save_post', 'bw_effort_save_postdata', 10, 3 ); }View on GitHub View on Trac
