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/…トリックは、値を配列として返すことです。
—
アレクサンダーfilatov 14