Slide 11
Slide 11 text
add_action('init', 'wordsesh_sessions');
function wordsesh_sessions() {
$wordsesh_args = array(
'public' => true,
'query_var' => 'wordsesh',
‘can_export’ => true,
'supports' => array( 'title', 'editor', 'thumbnail', 'excerpt', 'comments', 'page-attributes' ),
'labels' => array(
'name' => 'WordSesh 2 Sessions',
'singular' => 'WordSesh 2 Session',
'add_new' => 'Add Session',
'add_new_item' => 'Add Session',
'edit_item' => 'Edit Session',
'new_item' => 'New Session',
'view_item' => 'View Session',
'search_items' => 'Search Sessions',
'not_found' => 'No sessions found',
'not_found_in_trash' => 'No Sessions found in the Trash',
),
);
register_post_type('WordSesh', $wordsesh_args );
}