Advertisement
Guest User

Untitled

a guest
Mar 19th, 2013
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.56 KB | None | 0 0
  1.         register_post_type('freestuff',
  2.             array(
  3.                 'labels' => array(
  4.                     'name' => 'Free Stuff',
  5.                     'singular_name' => 'Free Stuff'
  6.                 ),
  7.             'public' => true,
  8.             'has_archive' => true,
  9.             'taxonomies' => 'freestuff',
  10.             'supports' => array('title','editor','author')
  11.             )
  12.         );
  13.         register_post_type('freetips',
  14.             array(
  15.                 'labels' => array(
  16.                     'name' => 'Free Tips',
  17.                     'singular_name' => 'Free Tip'
  18.                 ),
  19.             'public' => true,
  20.             'has_archive' => true,
  21.             'taxonomies' => 'freetip',
  22.             'supports' => array('title','editor','author')
  23.             )
  24.         );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement