afsarwebdev

WP Custom Post

Oct 1st, 2016
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. // Register Custom Post
  2. add_action( 'init', 'technotiers_create_post_type' );
  3. function technotiers_create_post_type() {
  4.  
  5. // project section
  6. register_post_type( 'project',
  7. array(
  8. 'labels' => array(
  9. 'name' => __( 'Project' ),
  10. 'singular_name' => __( 'project' ),
  11. 'add_new_item' => __( 'Add New Project' )
  12. ),
  13. 'public' => true,
  14. 'menu_icon' => get_stylesheet_directory_uri(). '/images/post-icon/portfolio.png',
  15. 'menu_position' => 5,
  16. 'supports' => array( 'title', 'editor', 'thumbnail'),
  17. 'has_archive' => true,
  18. )
  19. );
  20.  
  21. }
Add Comment
Please, Sign In to add comment