缺少WP\\u Widget类的文档让我抓狂。以下是我从抄本中抢救出来的:
public function form($instance){
?>
<label for="<?php echo $this->get_field_id(\'title\'); ?>">Title:
<input type="text" name="<?php echo $this->get_field_name(\'title\'); ?>" value="<?php echo $instance[\'title\']; ?>" id="<?php echo $this->get_field_id(\'title\'); ?>" />
</label>
<?php
}
这是什么
$instance
变量医生说是的
The settings for the particular instance of the widget
. 但为什么它不只是
$this
. 为什么
$this->get_field_name(\'title\')
似乎对一个头衔有所了解,突然间,当我们想要这个该死的头衔时,我不得不开始讨论这个
instance
变量我错过了什么。
你能解释一下$title
被扣留了,怎么回事$instance
不同于$this
为什么我们要使用标题来获取字段名?
感谢您的支持!