Advertisement
wdtobibur

Wordpress Custom Post

Sep 30th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.49 KB | None | 0 0
  1. #####################
  2.  
  3. Custom Post
  4.  
  5. <?php
  6.     function moderna_custom_post(){
  7.         register_post_type('moderna_slider',array(
  8.             'labels' =>array(
  9.             'name'=>__('Slider','moderna'),
  10.             'add_new_item'=>__('Add New Slider','moderna'),
  11.             'featured_image'=> __('Portfolio photo', 'unicoo'),
  12.             ),
  13.             'menu_icon' =>'dashicons-format-gallery',
  14.             'public'=>true,
  15.             'supports' =>array('title','editor','thumbnail'),
  16.             'show_in_rest' => true
  17.         ));
  18.  
  19.     };
  20. add_action('init','moderna_custom_post');
  21. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement