esc_html__( "cari-beasiswa", "foxiz" ), "singular_name" => esc_html__( "cari-beasiswa", "foxiz" ), ]; $args = [ "label" => esc_html__( "cari-beasiswa", "foxiz" ), "labels" => $labels, "description" => "", "public" => true, "publicly_queryable" => true, "show_ui" => true, "show_in_rest" => true,">

Kalender Beasiswa

Editor Gooders
1 Min Read
function cptui_register_my_cpts() {

	/**
	 * Post Type: cari-beasiswa.
	 */

	$labels = [
		"name" => esc_html__( "cari-beasiswa", "foxiz" ),
		"singular_name" => esc_html__( "cari-beasiswa", "foxiz" ),
	];

	$args = [
		"label" => esc_html__( "cari-beasiswa", "foxiz" ),
		"labels" => $labels,
		"description" => "",
		"public" => true,
		"publicly_queryable" => true,
		"show_ui" => true,
		"show_in_rest" => true,
		"rest_base" => "",
		"rest_controller_class" => "WP_REST_Posts_Controller",
		"rest_namespace" => "wp/v2",
		"has_archive" => false,
		"show_in_menu" => true,
		"show_in_nav_menus" => true,
		"delete_with_user" => false,
		"exclude_from_search" => false,
		"capability_type" => "post",
		"map_meta_cap" => true,
		"hierarchical" => false,
		"can_export" => false,
		"rewrite" => [ "slug" => "cari-beasiswa", "with_front" => true ],
		"query_var" => true,
		"supports" => [ "title", "editor", "thumbnail" ],
		"show_in_graphql" => false,
	];

	register_post_type( "cari-beasiswa", $args );
}

add_action( 'init', 'cptui_register_my_cpts' );
Share This Article