Skip to content

Instantly share code, notes, and snippets.

@kimcoleman
Last active August 3, 2018 19:32
Show Gist options
  • Save kimcoleman/1112978beb473a9abb53175cef3d3362 to your computer and use it in GitHub Desktop.
Save kimcoleman/1112978beb473a9abb53175cef3d3362 to your computer and use it in GitHub Desktop.
Args for Add Ons CPT
<?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