0
<div class="modal-body">
<form method="POST" action="">
<input type="file" name="featured_img"><br/>
<input type="submit" name="imgupdate" class="btn btn-info btn-lg">
<button type="button" class="btn btn-info btn-lg" data-dismiss="modal">Cancel</button>
</form>
</div>
<?php
global $wpdb;
$update_id = get_the_ID();
// Update featured image
$uploaddir = wp_upload_dir();
$file = $_FILES['featured_img'];
$uploadfile = $uploaddir['path'] . '/' . basename($file['name']);
move_uploaded_file($file['tmp_name'], $uploadfile);
$filename = basename($uploadfile);
$wp_filetype = wp_check_filetype(basename($filename), null);
$attachment = array(
'post_mime_type' => $wp_filetype['type'],
'post_title' => preg_replace('/\.[^.]+$/', '', $filename),
'post_content' => '',
'post_status' => 'inherit',
'menu_order' => $_i + 1000
);
$update_img = wp_insert_attachment($attachment, $uploadfile);
if (isset($_POST['imgupdate'])) {
if (($_FILES['featured_img']['name'] == true)) {
update_post_meta($update_id, '_thumbnail_id', $update_img);
}
}
?>
我想從前端編輯特色圖像我想通過使用此代碼來實現此目的,但它不工作,它不更新圖像。任何幫助?我在哪裏得到這個問題。此代碼的其他頁面上做工精細。但我想這個模型彈出。這不適用於彈出窗口。任何幫助?上傳中的問題在前端自定義帖子類型中的功能
在此先感謝。
你使用的顯示您的彈出一個插件?我們可以有完整的源代碼? – Paul