-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpost-process.php
More file actions
70 lines (54 loc) · 2.58 KB
/
post-process.php
File metadata and controls
70 lines (54 loc) · 2.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?php
/**
* post-process.php
* make sure to include post-process.php in your functions.php. Use this in functions.php:
*
* get_template_part('post-process');
*
*/
function do_insert() {
if( 'POST' == $_SERVER['REQUEST_METHOD']
&& !empty( $_POST['action'] )
&& $_POST['post_type'] == 'book' ) { // Check what the post type is here instead
// Setting the 'post_type' => $_POST['post_type'] in the $post array below causes 404
// Just set it based on what is set in the above IF $_POST type == 'book'.
// and below do 'post_type' => 'book'
// Do some minor form validation to make sure there is content
if (isset ($_POST['title'])) { $title = $_POST['title']; } else { echo 'Please enter a title'; }
if (isset ($_POST['description'])) { $description = $_POST['description']; } else { echo 'Please enter the content'; }
$tags = trim( $_POST['post_tags'] );
// Get the array of selected categories as multiple cats can be selected
$cat = array( $_POST['cat'] );
// Add the content of the form to $post as an array
$post = array(
'post_title' => $title,
'post_content' => $description,
'post_category' => $cat, // Usable for custom taxonomies too
'tags_input' => $tags,
'post_status' => 'publish', // Choose: publish, preview, future, etc.
'post_type' => 'book' // Set the post type based on the IF is post_type X
);
wp_insert_post($post); // Pass the value of $post to WordPress the insert function
// http://codex.wordpress.org/Function_Reference/wp_insert_post
} // end IF
}
// Do the wp_insert_post action to insert it
do_action('wp_insert_post', 'do_insert');
?>
<!-- Put this in your theme template file -->
<div id="postbox">
<form id="new_post" name="new_post" method="post" action="<?php bloginfo('template_directory');?>/post-process.php">
<p><label for="title">Title</label><br />
<input type="text" id="title" value="" tabindex="1" size="20" name="title" /></p>
<p><label for="description">Description</label><br />
<textarea id="description" tabindex="3" name="description" cols="50" rows="6"></textarea>
</p>
<p><?php wp_dropdown_categories( 'show_option_none=Category&tab_index=4&taxonomy=category' ); ?></p>
<p><label for="post_tags">Tags</label>
<input type="text" value="" tabindex="5" size="16" name="post_tags" id="post_tags" /></p>
<p><input type="submit" value="Publish" tabindex="6" id="submit" name="submit" /></p>
<input type="hidden" name="post_type" id="post_type" value="book" />
<input type="hidden" name="action" value="post" />
<?php wp_nonce_field( 'new-post' ); ?>
</form>
</div>