Skip to content

Instantly share code, notes, and snippets.

@yasaryousuf
Last active April 18, 2018 06:41
Show Gist options
  • Save yasaryousuf/8e4284c1298c2eed215d5db13ffddc6f to your computer and use it in GitHub Desktop.
Save yasaryousuf/8e4284c1298c2eed215d5db13ffddc6f to your computer and use it in GitHub Desktop.
wordpress custom post type
<?php
# Custom Post Type
function registration_post_types()
{
$args = array(
'labels' => array(
'name' => __( 'Registrations' ),
'singular_name' => __( 'Registration' )
),
'public' => true,
'show_ui' => true,
'menu_position' => 5,
'menu_icon' => 'dashicons-video-alt',
);
register_post_type( 'registration', $args );
}
add_action( 'init', 'registration_post_types' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment