gpt4 book ai didi

wordpress - 如何在 Wordpress 中更改自定义帖子类型的表单 enctype?

转载 作者:行者123 更新时间:2023-12-05 09:24:39 28 4
gpt4 key购买 nike

我正在创建自定义帖子类型的音乐。

function layzend_admin_music_init() {
add_meta_box("layzend_music_information-meta", "Information", "layzend_music_information", "music", "normal", "low");
}

function layzend_music_information() {
?>
<p>
<label for="layzend_music_url">URL</label>
<input type="file" id="layzend_music_url" name="layzend_music_url" />
</p>
<?php
}

此文件字段需要表单 enctype 为多部分/表单数据我如何更改自定义帖子类型的默认表单 enctype?

最佳答案

试试这个:

add_action('post_edit_form_tag', 'add_post_enctype');

function add_post_enctype() {
echo ' enctype="multipart/form-data"';
}

更多info in the Codex .

这对你有用吗?

关于wordpress - 如何在 Wordpress 中更改自定义帖子类型的表单 enctype?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9947094/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com