Recipes Post Type

Home » Snippets » Recipes Post Type

Visibility: public

Created with Post Type Generator

Creator: WPTurbo Team

				function () : void {
	$labels = [
	];
	$labels = apply_filters( '-labels', $labels );

	$args = [
		'labels' => $labels,
		'supports' => [
		],
		'hierarchical' => false,
		'public' => false,
		'show_ui' => false,
		'show_in_menu' => false,
		'show_in_admin_bar' => false,
		'show_in_nav_menus' => false,
		'exclude_from_search' => false,
		'has_archive' => false,
		'can_export' => false,
	];
	$args = apply_filters( '-args', $args );

	register_post_type( '', $args );
}
add_action( 'init', '', 0 );