Skip to content

Instantly share code, notes, and snippets.

@harisrozak
Last active April 15, 2016 07:41
Show Gist options
  • Save harisrozak/d6ae45c21b3fe10313413570cb4e0ab7 to your computer and use it in GitHub Desktop.
Save harisrozak/d6ae45c21b3fe10313413570cb4e0ab7 to your computer and use it in GitHub Desktop.
<?php
register_post_type( 'myplugin',
array(
'labels' => array(
'name' => 'My Plugin',
'all_items' => 'View All Rules',
'add_new' => 'Add Rule',
'add_new_item' => 'Add New Rule',
'edit' => 'Edit Rule',
'edit_item' => 'Edit Rule',
),
'public' => false,
'show_ui' => true,
'menu_icon' => 'dashicons-format-image',
'supports' => array('title')
)
);
// https://developer.wordpress.org/resource/dashicons/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment