EduardET

Untitled

Feb 2nd, 2018
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. function project_register_post_type() {
  2. register_post_type(
  3. 'project',
  4. array (
  5. 'labels' => array(
  6. 'name' => __('Trainers'),
  7. 'singular_name' => __('Trainer')
  8. ),
  9. 'public' => true,
  10. 'has_archive' => true,
  11. 'rewrite' => array( 'slug' => 'protagonisti')
  12. )
  13. );
  14. }
  15. add_action('wp_loaded', 'project_register_post_type');
Advertisement
Add Comment
Please, Sign In to add comment