Guest User

Untitled

a guest
May 25th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. /*
  2. * Register portfolio fields post type
  3. */
  4. function add_portfolio_img_post_type() {
  5. register_post_type('add_portfolio_img', array(
  6. 'public' => true,
  7. 'labels' => array(
  8. 'name' => __('Картинки портфолио')
  9. )
  10. ));
  11. }
  12. add_action('init', 'add_portfolio_img_post_type');
Add Comment
Please, Sign In to add comment