Posted By


antwortzeit on 05/20/11

Tagged


Statistics


Viewed 58 times
Favorited by 0 user(s)

Related snippets


WPAlchemy save_filter


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. $termine = new WPAlchemy_MetaBox(array(
  2. 'id' => '_termine',
  3. 'title' => 'Termine',
  4. 'types' => array('termine'),
  5. 'template' => TEMPLATEPATH . '/MetaBoxen/termine.php',
  6. 'save_filter' => 'antwortzeit_terminstempel'
  7. ));
  8.  
  9. function antwortzeit_terminstempel($meta, $post_id) {
  10. var_dump($meta);
  11. var_dump($post_id);
  12.  
  13. return $meta;
  14. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.