From b5f89450bb4916c931b73b83d3bda342f1d8bbc4 Mon Sep 17 00:00:00 2001 From: John Janus Date: Thu, 24 Dec 2015 09:43:03 +0100 Subject: [PATCH] initial commit --- .gitignore | 3 +++ main.php | 31 +++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 .gitignore create mode 100644 main.php diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d984845 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +*~ +*.swp +*.backup diff --git a/main.php b/main.php new file mode 100644 index 0000000..5fee237 --- /dev/null +++ b/main.php @@ -0,0 +1,31 @@ + array( + 'name' => __( 'Shows' ), + 'singular_name' => __( 'Show' ), + 'name_admin_bar' => __( 'Show' ) + ), + 'public' => true, + 'has_archive' => true, + 'public' => true, + 'menu_position' => 20 + ) + ); +} + +?> -- 2.48.1