Advertisement
Guest User

CustomTestPost

a guest
Dec 18th, 2014
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. add_action( 'init', 'create_post_type' );
  2.  
  3. function create_post_type ( )
  4. {
  5.   register_post_type( 'CustomTestPost',
  6.    array
  7.    (
  8.       'labels' => array
  9.       (
  10.         'name' => 'Custom Test Post',
  11.         'singular_name' => 'Custom Test Post'
  12.       ),
  13.       'public' => true
  14.     )
  15.   );
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement