Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- //Für unseren Custom Post Type 'url' fügen wir hier nun
- //eine Metabox hinzu
- add_action( 'add_meta_boxes', 'us_add_meta_boxes' );
- function us_add_meta_boxes(){
- add_meta_box(
- 'us_url',
- 'Kurz-URL',
- 'us_meta_box_url_render',
- 'url'
- );
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment