Guest User

Untitled

a guest
May 24th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <?php
  2. /*
  3. Plugin Name: My Custom Post Type
  4. Description: Minimal code to add custom post type in a plugin
  5. Version: 0.01
  6. Author: Myself
  7. */
  8.  
  9. add_action( 'init', 'my_custom_plugin_create_post_type' );
  10.  
  11. function my_custom_plugin_create_post_type() {
  12. register_post_type( 'team_member',
  13. 'public' => true,
  14. 'has_archive' => true,
  15. /* more settings for your custom post type here */
  16. )
  17. );
Add Comment
Please, Sign In to add comment