]> Johnzone git - wordpress_presale.git/commitdiff
started to add meta fields to add show
authorJohn Janus <mail@johnzone.org>
Sun, 6 Mar 2016 21:57:33 +0000 (22:57 +0100)
committerJohn Janus <mail@johnzone.org>
Sun, 6 Mar 2016 21:57:33 +0000 (22:57 +0100)
needs to be saved and shown on page

wp-presale-plugin.php [new file with mode: 0644]
wp-show-cpt.php
wp-show-metaboxes.php [new file with mode: 0644]

diff --git a/wp-presale-plugin.php b/wp-presale-plugin.php
new file mode 100644 (file)
index 0000000..1ac819b
--- /dev/null
@@ -0,0 +1,13 @@
+<?php
+/*
+ * Plugin Name: Theatre Pre-Sale
+ * Plugin URI: https://johnzone.org/vvk
+ * Description: Keep track of sold tickets
+ * Author: John Janus
+ * License: GPL3
+ * License URI: https://gnu.org/licenses/gpl3
+ */
+defined ( 'ABSPATH' ) or die ( 'No script kiddies please!' );
+
+require_once ( plugin_dir_path(__FILE__) . 'wp-show-cpt.php' );
+require_once ( plugin_dir_path(__FILE__) . 'wp-show-metaboxes.php' );
index 05bdfbb2d86a5289e3b1ae32186d0665b20e7fa2..9947122f883b518211bf4e0c33ea4d6df9bf6b45 100644 (file)
@@ -1,13 +1,4 @@
 <?php
-/*
- * Plugin Name: Theatre Pre-Sale
- * Plugin URI: https://johnzone.org/vvk
- * Description: Keep track of sold tickets
- * Author: John Janus
- * License: GPL3
- * License URI: https://gnu.org/licenses/gpl3
- */
-defined ( 'ABSPATH' ) or die ( 'No script kiddies please!' );
 
 // custom post type for events
 
@@ -53,10 +44,10 @@ function presale_create_post_type() {
           'feeds' => true 
       ),
       'supports' => array (
-          'author',
+          #'author',
           'editor',
           'title',
-          'custom-fields',
+          #'custom-fields',
           'thumnails' 
       ) 
   ) );
@@ -95,5 +86,3 @@ function presale_register_taxonomy() {
       ) 
   ) );
 }
-
-?>
diff --git a/wp-show-metaboxes.php b/wp-show-metaboxes.php
new file mode 100644 (file)
index 0000000..170a6f0
--- /dev/null
@@ -0,0 +1,33 @@
+<?php
+
+function presale_add_custom_metabox() {
+    add_meta_box(
+        'presale_meta',
+        __ ('Show Presale'),
+        'presale_meta_callback',
+        'presale_show',
+        'normal',
+        'high'
+    );
+}
+
+add_action( 'add_meta_boxes', 'presale_add_custom_metabox');
+
+function presale_meta_callback( $post ) {
+    wp_nonce_field ( basename( __FILE__ ), 'presale_nonce');
+    $presale_stored_data = get_post_meta( $post->ID);
+    ?>
+    <div>
+        <div class="meta-row">
+            <div class="meta-th"><label for="presale-seats" class="show-title">Show ID</label></div>
+            <div class="meta-td">
+                <input type="text" name="presale-seats" id="presale-seats" 
+                    value="<?php if (!empty ( $presale_stored_data['presal-seats'])) echo esc_attr( $presale_stored_data['presal-seats'][0] ) ?>">
+                </input>
+            </div>
+        </div>
+    </div>
+    <?php
+}
+
+