Return to Snippet

Revision: 46455
at May 20, 2011 00:16 by antwortzeit


Initial Code
$termine = new WPAlchemy_MetaBox(array(
	'id' => '_termine',
	'title' => 'Termine',
	'types' => array('termine'),
	'template' => TEMPLATEPATH . '/MetaBoxen/termine.php',
	'save_filter' => 'antwortzeit_terminstempel'
));

function antwortzeit_terminstempel($meta, $post_id) {
    var_dump($meta);
    var_dump($post_id);
    exit;

    return $meta;
}

Initial URL


Initial Description


Initial Title
WPAlchemy save_filter

Initial Tags


Initial Language
PHP