我想添加一个表单在wordpress中的用户配置文件管理页面中上传图像,我以前试过这个代码,它在正常的php页面中工作正常,但是当我尝试它在这个WordPress的功能,它不工作。无法在wordpress管理页面上传图像
有人可以帮忙吗?
function image_up_gall(){
?>
<form action="#" method="post" enctype="multipart/form-data">
Select image to upload:
<input type="file" name="fileToUpload" id="fileToUpload">
<input type="submit" value="Upload Image" name="submit">
</form>
<?php
$target_dir = "uploads/";
$target_file = $target_dir . basename($_FILES["fileToUpload"]["name"]);
$uploadOk = 1;
$imageFileType = pathinfo($target_file,PATHINFO_EXTENSION);
// Check if image file is a actual image or fake image
if (move_uploaded_file($_FILES["fileToUpload"]["tmp_name"], $target_file)) {
echo "The file ". basename($_FILES["fileToUpload"]["name"]). " has been uploaded.";
} else {
echo "Sorry, there was an error uploading your file.";
}
}
add_action('edit_user_profile', 'image_up_gall');
add_action('show_user_profile', 'image_up_gall');
感谢您的帮助,但它不工作。 – Tarek
你能描述一下吗? –
图片没有上传。 – Tarek