Last active
April 15, 2016 07:41
-
-
Save harisrozak/d6ae45c21b3fe10313413570cb4e0ab7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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