Last active
August 3, 2018 19:32
-
-
Save kimcoleman/1112978beb473a9abb53175cef3d3362 to your computer and use it in GitHub Desktop.
Args for Add Ons CPT
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 | |
$args = array( | |
'labels' => $labels, | |
'description' => __( 'Paid Memberships Pro Add Ons', 'pmpro' ), | |
'public' => true, | |
'publicly_queryable' => true, | |
'show_ui' => true, | |
'show_in_menu' => true, | |
'query_var' => true, | |
'rewrite' => array( 'slug' => 'add-ons' ), | |
'menu_icon' => 'dashicons-admin-plugins', | |
'capability_type' => 'page', | |
'has_archive' => true, | |
'hierarchical' => true, | |
'menu_position' => null, | |
'supports' => array( 'title', 'editor', 'author', 'custom-fields', 'thumbnail', ) | |
); | |
register_post_type( 'add-ons', $args ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment