È necessario seguire i passaggi essenziali di seguito per creare un modulo per i post inviati dagli utenti.
Passaggio 1. Crea un modulo tramite il quale un utente può inviare il titolo del post, il contenuto, i tag, la categoria, l’immagine in primo piano. Puoi inserire questo codice nel tuo tema functions.php o in qualsiasi altro file.
<?php
add_shortcode( 'designcare_frontend_post', 'designcare_frontend_post' );
function designcare_frontend_post() {
designcare_post_if_submitted(); ?>
<form id="new_post" name="new_post" method="post" enctype="multipart/form-data">
<p><label for="title"><?php echo esc_html__('Title','designcare'); ?></label><br />
<input type="text" id="title" value="" tabindex="1" size="20" name="title" />
</p>
<?php wp_editor( '', 'content' ); ?>
<p><?php wp_dropdown_categories( 'show_option_none=Category&tab_index=4&taxonomy=category' ); ?></p>
<p><label for="post_tags"><?php echo esc_html__('Tags','designcare'); ?></label>
<input type="text" value="" tabindex="5" size="16" name="post_tags" id="post_tags" /></p>
<input type="file" name="post_image" id="post_image" aria-required="true">
<p><input type="submit" value="Publish" tabindex="6" id="submit" name="submit" /></p>
</form>
<?php
} ?>
Passaggio 2. Catturare l’input dal modulo di invio del post dell’utente front-end. Puoi anche inserire questo codice nel tuo tema functions.php o in qualsiasi altro file.
<?php
function designcare_post_if_submitted() {
// Stop running function if form wasn't submitted
if ( !isset($_POST['title']) ) {
return;
}
// Add the content of the form to $post as an array
$post = array(
'post_title' => $_POST['title'],
'post_content' => $_POST['content'],
'post_category' => array($_POST['cat']),
'tags_input' => $_POST['post_tags'],
'post_status' => 'draft', // Could be: publish
'post_type' => 'post' // Could be: 'page' or your CPT
);
$post_id = wp_insert_post($post);
// For Featured Image
if( !function_exists('wp_generate_attachment_metadata')){
require_once(ABSPATH . "wp-admin" . '/includes/image.php');
require_once(ABSPATH . "wp-admin" . '/includes/file.php');
require_once(ABSPATH . "wp-admin" . '/includes/media.php');
}
if($_FILES) {
foreach( $_FILES as $file => $array ) {
if($_FILES[$file]['error'] !== UPLOAD_ERR_OK){
return "upload error : " . $_FILES[$file]['error'];
}
$attach_id = media_handle_upload( $file, $post_id );
}
}
if($attach_id > 0) {
update_post_meta( $post_id,'_thumbnail_id', $attach_id );
}
echo 'Saved your post successfully! :)';
} ?>
Passaggio 3. Incolla lo shortcode del modulo in cui desideri visualizzare il modulo.
<?php echo do_shortcode('[ designcare_frontend_post ]'); ?>
Penso che questo sistema ti sarà utile e ti farà risparmiare molto tempo!
Felice codifica. Grazie!