Advance Guest Post Settings

Options

Select Option according your needs


Enter labale Name which You want to show in front page:

Post Title: //default Post Title
Post Discription: //default Post Discription
Post Author: //default Post Author
Post Category: //default Post Category
Upload Image: //default Upload Image
Post Tags: //default Product Category
Post Short Description: //default Short Description



enable or disable option which you don't want in front page:
Post Title:
Post Discription:
Post Author:
Post Category:
Upload Image:
Tags:
Excerpt Post:



Create field required(tick checkbox which filed you want require):
Post Title: >
Post Discription: >
Post Category: >
Feature Image: >
Tags: >
Excerpt Post: >
Enable Multiple Category: >



Select Post Type and taxnomy where you want to post to publish
(Note* the texnomy you select is the part of post type you selected like if you select "post-type:post" then taxnomy should be "category"):
Post Type:
Post Taxonomies:
Auto Publish?:



Captcha setting(get captcha public key from here http://www.google.com/recaptcha):
Enable/disable Captcha:
Captcha Public Key: //default none
Captcha Private Key: //default none



Other Option:
Enable/disable Guest Posting:

enable or disable guest posting(disable need required login to publish post)

Success Message

//default message none

Image Size: //defult 2mb use only value ex: "2"

Shortcode

Use this shortcode to display the advcance guest post Form on any post or page:

[advance_guest_post]

admin_url( 'admin-ajax.php' ), 'redirecturl' => get_permalink( $post->ID ), 'loadingmessage' => __('Sending user info, please wait...') )); // Enable the user with no privileges to run ajax_login() in AJAX add_action( 'wp_ajax_nopriv_ajaxlogin', 'ajax_login' ); } // Execute the action only if the user isn't logged in add_action('init', 'ajax_login_init'); function ajax_login(){ // First check the nonce, if it fails the function will break check_ajax_referer( 'ajax-login-nonce', 'security' ); // Nonce is checked, get the POST data and sign user on $info = array(); $info['user_login'] = $_POST['username']; $info['user_password'] = $_POST['password']; $info['remember'] = true; $user_signon = wp_signon( $info, false ); if ( is_wp_error($user_signon) ){ echo json_encode(array('loggedin'=>false, 'message'=>__('Wrong username or password.'))); } else { echo json_encode(array('loggedin'=>true, 'message'=>__('Login successful, redirecting...'))); } die(); } ?>