function fn_set_featured_image() {
if (isset($_POST['upload_file']) && wp_verify_nonce($_REQUEST['image_nonce'], 'image_nonce')) {
$upload = wp_upload_bits($_FILES["image"]["name"], null, file_get_contents($_FILES["image"]["tmp_name"]));
if (!$upload['error']) {
$new_post = array(
'post_title' => 'title',
'post_content' => 'content',
'post_status' => 'pending',
'post_type' => 'post',
);
$post_id = wp_insert_post($new_post);
$filename = $upload['file'];
$wp_filetype = wp_check_filetype($filename, null);
$attachment = array(
'post_mime_type' => $wp_filetype['type'],
'post_title' => sanitize_file_name($filename),
'post_content' => 'lioneltest',
'post_status' => 'inherit',
);
$attachment_id = wp_insert_attachment($attachment, $filename, $post_id);
if (!is_wp_error($attachment_id)) {
require_once ABSPATH . 'wp-admin/includes/image.php';
$attachment_data = wp_generate_attachment_metadata($attachment_id, $filename);
wp_update_attachment_metadata($attachment_id, $attachment_data);
set_post_thumbnail($post_id, $attachment_id);
}
}
}
}
add_action('init', 'fn_set_featured_image');
<?php
/*
Template Name: Add New Product
*/
?>
<?php get_header();?>
<form method="post" enctype="multipart/form-data">
<p>
<label>Select Image:</label>
<input type="file" name="image" required />
</p>
<input type="hidden" name="image_nonce" value="<?php echo wp_create_nonce('image_nonce'); ?>" />
<input type="submit" name="upload_file" value="Submit" />
</form>
<?php
get_footer();?>
function fn_set_featured_image() {
if (isset($_POST['upload_file']) && wp_verify_nonce($_REQUEST['image_nonce'], 'image_nonce')) {
$upload = wp_upload_bits($_FILES["image"]["name"], null, file_get_contents($_FILES["image"]["tmp_name"]));
if (!$upload['error']) {
$new_post = array(
'post_title' => 'title',
'post_content' => 'content',
'post_status' => 'pending',
'post_type' => 'product',
);
$post_id = wp_insert_post($new_post);
wp_update_post(array(
'post_title' => 'About',
'ID' => $post_id,
'meta_input' => array(
'_regular_price' => '3333',
'_price' => 123,
),
));
$filename = $upload['file'];
$wp_filetype = wp_check_filetype($filename, null);
$attachment = array(
'post_mime_type' => $wp_filetype['type'],
'post_title' => sanitize_file_name($filename),
'post_content' => 'lioneltest',
'post_status' => 'inherit',
);
$attachment_id = wp_insert_attachment($attachment, $filename, $post_id);
if (!is_wp_error($attachment_id)) {
require_once ABSPATH . 'wp-admin/includes/image.php';
$attachment_data = wp_generate_attachment_metadata($attachment_id, $filename);
wp_update_attachment_metadata($attachment_id, $attachment_data);
set_post_thumbnail($post_id, $attachment_id);
}
}
}
}
add_action('init', 'fn_set_featured_image');
<?php
/*
Template Name: Add New Product
*/
?>
<?php get_header();?>
<form method="post" enctype="multipart/form-data">
<p>
<label>Select Image:</label>
<input type="file" name="image" required />
</p>
<input type="hidden" name="image_nonce" value="<?php echo wp_create_nonce('image_nonce'); ?>" />
<input type="submit" name="upload_file" value="Submit" />
</form>
<?php
get_footer();?>