Advertisement
websupporter

Eine WP-Aktion in Aktion

Jun 5th, 2015
12,137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. add_action( 'init', 'us_init' );
  2. function us_init(){
  3.     //Unsere Kurz-URLs legen wir als eigene Post Typen an.
  4.     $args = array(
  5.         'label'     => 'Kurz-URLs',
  6.         'public'    => true,
  7.         'supports'  => array( 'title' ),
  8.         'rewrite'   => array( 'slug' => 'e' ),
  9.     );
  10.     register_post_type( 'url', $args );
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement