Skip to content

Instantly share code, notes, and snippets.

@mrbobbybryant
Created February 27, 2016 17:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mrbobbybryant/bc24775ee78675d8cc33 to your computer and use it in GitHub Desktop.
Save mrbobbybryant/bc24775ee78675d8cc33 to your computer and use it in GitHub Desktop.
<div style="width: 70%; margin: 0 auto;">
<form id="user-post">
<?php wp_nonce_field( basename( __FILE__ ), 'user-submitted-question' ) ?>
<input type="text" id="user-name" name="user-name" placeholder="Name" style="margin-bottom: 10px;">
<input type="text" id="user-email" name="user-email" placeholder="Email" style="margin-bottom: 10px;">
<select name="product" id="product" style="margin-bottom: 10px;">
<option value=""></option>
<option value="hosting">Hosting</option>
<option value="themes">Themes</option>
<option value="plugins">Plugins</option>
<option value="custom-dev">Custom Development</option>
</select>
<label for="user-entry-content">Write Your Question Here:</label>
<textarea name="user-entry-content" id="user-entry-content" cols="30" rows="10" style="margin-bottom: 10px;"></textarea>
<input type="text" id="xyq" name="<?php echo apply_filters( 'honeypot_name', 'date-submitted' ) ?>" value="" style="display: none">
<input type="submit" id="user-submit-button" value="Submit Post">
</form>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment