Advertisement
Guest User

Untitled

a guest
Feb 4th, 2016
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.16 KB | None | 0 0
  1. <?php
  2. /**
  3.  * Template Name: Testimonials
  4.  */
  5.    
  6. ?>
  7.  
  8. <?php
  9.  
  10. $postTitleError = '';
  11. $postContentError = '';
  12.  
  13.  
  14.  
  15.  
  16.  
  17. if ( isset( $_POST['submitted'] ) && isset( $_POST['post_nonce_field'] ) && wp_verify_nonce( $_POST['post_nonce_field'], 'post_nonce' ) ) {
  18.  
  19.  
  20.     if ( trim( $_POST['postTitle'] ) === '' ) {
  21.         $postTitleError = 'Please enter your name.';
  22.         $hasError = true;
  23.     }
  24.     if ( trim( $_POST['postContent'] ) === '' ) {
  25.         $postContentError = 'Please enter a testimonial.';
  26.         $hasError = true;
  27.     }
  28.     $post_information = array(
  29.     'post_title' => wp_strip_all_tags( $_POST['postTitle'] ),
  30.     'post_content' => $_POST['postContent'],
  31.     'post_type' => 'testimonials',
  32.     'post_status' => 'pending'
  33. );
  34.  
  35. $post_id = wp_insert_post( $post_information );
  36.  
  37. if ( $post_id ) {
  38.     wp_redirect( home_url() );
  39.     exit;
  40. }
  41.  
  42. }
  43.  
  44. ?>
  45.  
  46.  
  47.  
  48. <form action="" id="primaryPostForm" method="POST">
  49.  
  50.     <fieldset>
  51.         <label for="postTitle"><?php _e('Post Title:', 'framework') ?></label>
  52.  
  53.         <input type="text" name="postTitle" id="postTitle" value="<?php if ( isset( $_POST['postTitle'] ) ) echo $_POST['postTitle']; ?>" class="required" />
  54.     </fieldset>
  55. <?php if ( $postTitleError != '' ) { ?>
  56.     <span class="error"><?php echo $postTitleError; ?></span>
  57.     <div class="clearfix"></div>
  58. <?php } ?>
  59.  
  60.  
  61.     <fieldset>
  62.         <label for="postContent"><?php _e('Post Content:', 'framework') ?></label>
  63.  
  64.         <textarea name="postContent" id="postContent" rows="8" cols="30" class="required"><?php if ( isset( $_POST['postContent'] ) ) { if ( function_exists( 'stripslashes' ) ) { echo stripslashes( $_POST['postContent'] ); } else { echo $_POST['postContent']; } } ?></textarea>
  65.     </fieldset>
  66. <?php if ( $postContentError != '' ) { ?>
  67.     <span class="error"><?php echo $postContentError; ?></span>
  68.     <div class="clearfix"></div>
  69. <?php } ?>
  70.  
  71.  <?php wp_nonce_field( 'post_nonce', 'post_nonce_field' ); ?>
  72.     <fieldset>
  73.         <input type="hidden" name="submitted" id="submitted" value="true" />
  74.  
  75.         <button type="submit"><?php _e('Add Post', 'framework') ?></button>
  76.     </fieldset>
  77.  
  78. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement