gpt4 book ai didi

PHP WordPress Textarea 小部件保存将文本移到 Textarea 之外

转载 作者:行者123 更新时间:2023-11-28 01:33:42 25 4
gpt4 key购买 nike

好吧,对 php 来说还是个新手,所以我的代码中可能附加了一些额外的数据。我按照外部来源的建议在插件部分创建了一个小部件。我在widget中添加了一个textarea,所有的东西都保存和更新了,但是text area中的信息离开了textarea,保存后显示在textarea的下方。

因为我的声誉不够高,这里有一个图像链接来可视化问题 enter image description here

这是我在该区域的代码。

<p>
<label for="<?php echo $this->get_field_id('content'); ?>">
Text: <textarea class="widefat" rows="16" cols="16" id="<?php echo $this->get_field_id('content'); ?>" name="<?php echo $this->get_field_name('content'); ?>"/>
<?php echo esc_attr($content); ?>
</textarea></label>
</p>

最佳答案

您使用自己关闭文本区域标签,例如:<textarea /> .删除它

尝试

<p>
<label for="<?php echo $this->get_field_id('content'); ?>">
Text: <textarea class="widefat" rows="16" cols="16" id="<?php echo $this->get_field_id('content'); ?>" name="<?php echo $this->get_field_name('content'); ?>">
<?php echo esc_attr($content); ?>
</textarea></label>
</p>

关于PHP WordPress Textarea 小部件保存将文本移到 Textarea 之外,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29295096/

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