WP_Widget_Block::form()publicWP 5.8.0

Outputs the Block widget settings form.

Метод класса: WP_Widget_Block{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$WP_Widget_Block = new WP_Widget_Block();
$WP_Widget_Block->form( $instance );
$instance(массив) (обязательный)
Current instance.

Заметки

Список изменений

С версии 5.8.0 Введена.

Код WP_Widget_Block::form() WP 6.5.2

<?php
public function form( $instance ) {
	$instance = wp_parse_args( (array) $instance, $this->default_instance );
	?>
	<p>
		<label for="<?php echo $this->get_field_id( 'content' ); ?>">
			<?php
			/* translators: HTML code of the block, not an option that blocks HTML. */
			_e( 'Block HTML:' );
			?>
		</label>
		<textarea id="<?php echo $this->get_field_id( 'content' ); ?>" name="<?php echo $this->get_field_name( 'content' ); ?>" rows="6" cols="50" class="widefat code"><?php echo esc_textarea( $instance['content'] ); ?></textarea>
	</p>
	<?php
}