websupporter

add_meta_box

Jun 5th, 2015
12,015
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. <?php
  2. //Für unseren Custom Post Type 'url' fügen wir hier nun
  3. //eine Metabox hinzu
  4. add_action( 'add_meta_boxes', 'us_add_meta_boxes' );
  5. function us_add_meta_boxes(){
  6.     add_meta_box(
  7.         'us_url',
  8.         'Kurz-URL',
  9.         'us_meta_box_url_render',
  10.         'url'
  11.     );
  12. }
  13. ?>
Advertisement
Add Comment
Please, Sign In to add comment