Advertisement
shaashwato1308

WordPress - Custom Post Type

Nov 8th, 2016
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. add_action( 'init', 'create_post_type' );
  2. add_post_type_support( 'idxbroker_agent', 'thumbnail' );
  3. function create_post_type() {
  4.   register_post_type( 'idxbroker_agent',
  5.     array(
  6.       'labels' => array(
  7.         'name' => __( 'Agents' ),
  8.         'singular_name' => __( 'Agent' )
  9.       ),
  10.       'public' => true,
  11.       'has_archive' => true,
  12.     )
  13.   );
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement