mirror of
https://github.com/10h30/display-featured-image-genesis.git
synced 2026-06-05 15:08:20 +09:00
4ef7e552da
Adds new widget form class, which all three widgets can share.
8 lines
461 B
PHP
8 lines
461 B
PHP
<?php
|
|
|
|
echo '<p>';
|
|
$rows = isset( $args['rows'] ) ? $args['rows'] : 3;
|
|
printf( '<label for="%s">%s</label>', esc_attr( $this->parent->get_field_id( $args['id'] ) ), esc_attr( $args['label'] ) );
|
|
printf( '<textarea class="large-text" rows="%s" id="%s" name="%s">%s</textarea>', absint( $rows ), esc_attr( $this->parent->get_field_id( $args['id'] ) ), esc_attr( $this->parent->get_field_name( $args['id'] ) ), esc_attr( $instance[ $args['id'] ] ) );
|
|
echo '</p>';
|