动态添加窗口小部件表单字段


11

我正在尝试将表单字段动态添加到WordPress小部件。因此,如果用户想为事件添加另一个日期,则可以单击按钮以获取更多字段。

问题是:如何将新创建的输入字段保存到我的数据库中? 我需要编写自定义更新功能吗?有小费吗?

这是小部件的外观: 在此处输入图片说明

这是我的小部件的php代码(到目前为止):

    class Spillelister extends WP_Widget {

    public function Spillelister() {

        $widget_options = array (
            'classname' => 'spillelister-widget',
            'description' => 'Widget for å illustrere spillelister.');

        parent::WP_Widget('spillelister_widget', 'Spilleplan', $widget_options);
    }

    // The actual widget user interface
    public function widget($args, $instance) {

        extract( $args, EXTR_SKIP);
        $title = ( $instance['title'] ) ? $instance['title'] : 'Spilleplan';
        $body = ( $instance['body'] ) ? $instance['body'] : 'Ingen flere forestillinger';

        ?>

            <?php echo $before_widget; ?>
            <?php echo $before_title . $title . $after_title; ?>
            <p><?php echo $body; ?></p>

        <?php
    }

    public function update() {

    }

    public function form() {
    ?>
        <div class="date_stamp">
        <p>
            <label>Dato</label> <input type="text" class="datepicker">
            <br>
            <label>Tid</label> <input type="text">
            <span class="remove">Remove</span>
        </p>
        </div>
        <p>
            <span class="add">Add fields</span>
        </p>

    <?php 
    }


}

function spillelister_init() {
    register_widget('Spillelister');    
}
add_action('widgets_init', 'Spillelister_init');

任何提示,提示或答案表示赞赏。:)


1
我知道我来晚了,但是我碰到了这个线程,并在另一个线程中找到了答案:wordpress.stackexchange.com/questions/94617/…窍门似乎是将值作为数组传回。
alexanderfilatov 2014年

Answers:


5

有趣的问题!
我从未见过小部件中使用可重复的字段。给出完整的答案将需要太多的工作/时间,因此,我将为您提供我所知道的资源的链接,并希望您能够完成这项工作并与我们分享解决方案;)

所有这些示例都涉及Meta Boxes,您需要复制jQuery脚本并将其适应post_metaWidgets情况。


谢谢!如果我解决了这个问题,我会检查一下并给出答案。如果您或任何其他人在此上找到更多资源,请随时分享:)
Ole HenrikSkogstrøm2013年

1
从来没有尝试过,但是如果有人设法建立这样的东西,请在下面发布您的解决方案。:)
Ole HenrikSkogstrøm13年

2

这是一个动态小部件的示例,它呈现两个字段(image-id和url)。如果输入图像ID并按“更新”,则会添加两个新字段。我将其构建为使用图像和链接的URL创建一个光滑的slilder。

<?php

class imp_image_slider extends WP_Widget
{
/**
 * imp_image_slider constructor.
 */
public function __construct()
{
    parent::__construct(false, $name = "Impulse Image Slider", array("description" => "Creates Slick Image Slider"));
}

/**
 * @see WP_Widget::widget
 *
 * @param array $args
 * @param array $instance
 */
public function widget($args, $instance)
{
// render widget in frontend
}


/**
 * @see WP_Widget::update
 *
 * @param array $newInstance
 * @param array $oldInstance
 *
 * @return array
 */
public function update($newInstance, $oldInstance)
{
    $instance = $oldInstance;
    $instance['images'] = array();
    $instance['urls'] = array();
    if (isset($newInstance['images'])) {
        foreach ($newInstance['images'] as $key => $value) {
            if (!empty(trim($value))) {
                $instance['images'][$key] = $value;
                $instance['urls'][$key] = $newInstance['urls'][$key];
            }
        }
    }

    return $instance;
}

/**
 * @see WP_Widget::form
 *
 * @param array $instance
 */
public function form($instance)
{
    $images = isset($instance['images']) ? $instance['images'] : array();
    $urls = isset($instance['urls']) ? $instance['urls'] : array();
    $images[] = '';
    $form = '';

    foreach ($images as $idx => $value) {
        $image = isset($images[$idx]) ? $images[$idx] : '';
        $url = isset($urls[$idx]) ? $urls[$idx] : '';
        $form .= '<p>'
            . '<label>Slides:</label>'
            . sprintf(
                '<input type="text" name="%1$s[%2$s]" value="%3$s" class="widefat" placeholder="Image ID">',
                $this->get_field_name('images'),
                $idx,
                esc_attr($image))
            . '</p>'
            . '<p>'
            . sprintf(
                '<input type="text" name="%1$s[%2$s]" value="%3$s" class="widefat" placeholder="Url">',
                $this->get_field_name('urls'),
                $idx,
                esc_attr($url))
            . '</p>';
    }

    echo $form;
}
}

add_action('widgets_init', create_function('', 'return register_widget("imp_image_slider");'));

?>

嗨,您是否还可以添加注释或一些信息,以帮助其更好地帮助OP,以及不鼓励仅回答代码而发布的代码
bravokeyl

1
嗨,我刚做了。希望能帮助到你。
HKandulla'8

@HKandulla非常感谢。您和您的代码再次成为我的救生员谢谢。
Owaiz Yusufi
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.