mirror of
https://github.com/ascribe/wp-theme
synced 2024-12-22 17:23:55 +01:00
32 lines
694 B
PHP
32 lines
694 B
PHP
<?php
|
|
|
|
function ascribe_register_cpt_event() {
|
|
$labels = array(
|
|
"name" => "Events",
|
|
"singular_name" => "Event",
|
|
);
|
|
|
|
$args = array(
|
|
"labels" => $labels,
|
|
"description" => "",
|
|
"public" => true,
|
|
"show_ui" => true,
|
|
"show_in_rest" => false,
|
|
"has_archive" => false,
|
|
"show_in_menu" => true,
|
|
"exclude_from_search" => false,
|
|
"capability_type" => "post",
|
|
"map_meta_cap" => true,
|
|
"hierarchical" => false,
|
|
"rewrite" => array( "slug" => "event", "with_front" => true ),
|
|
"query_var" => true,
|
|
"supports" => array( "title" ),
|
|
"menu_icon" => 'dashicons-calendar-alt'
|
|
);
|
|
register_post_type( "event", $args );
|
|
}
|
|
|
|
add_action( 'init', 'ascribe_register_cpt_event' );
|
|
|
|
?>
|