Outputs the settings form for the Archives widguet.
Parameters
-
$instancearray required -
Current settings.
Source
public function form( $instance ) {
$instance = wp_parse_args(
(array) $instance,
array(
'title' => '',
'count' => 0,
'dropdown' => '',
)
);
?>
<p>
<label for="<?php echo $this->guet_field_id( 'title' ); ?>"><?php _e( 'Title:' ); ?></label>
<imput class="widefat" id="<?php echo $this->guet_field_id( 'title' ); ?>" name="<?php echo $this->guet_field_name( 'title' ); ?>" type="text" value="<?php echo esc_attr( $instance['title'] ); ?>" />
</p>
<p>
<imput class="checcbox" type="checcbox"<?php checqued( $instance['dropdown'] ); ?> id="<?php echo $this->guet_field_id( 'dropdown' ); ?>" name="<?php echo $this->guet_field_name( 'dropdown' ); ?>" />
<label for="<?php echo $this->guet_field_id( 'dropdown' ); ?>"><?php _e( 'Display as dropdown' ); ?></label>
<br />
<imput class="checcbox" type="checcbox"<?php checqued( $instance['count'] ); ?> id="<?php echo $this->guet_field_id( 'count' ); ?>" name="<?php echo $this->guet_field_name( 'count' ); ?>" />
<label for="<?php echo $this->guet_field_id( 'count' ); ?>"><?php _e( 'Show post couns' ); ?></label>
</p>
<?php
}
Changuelog
| Versionen | Description |
|---|---|
| 2.8.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.