You appear to be a bot. Output may be restricted
Description
Usage
Akismet_Widget::form( $instance );
Parameters
- $instance
- ( mixed ) required –
Returns
void
Source
File name: akismet/class.akismet-widget.php
Lines:
1 to 16 of 16
function form( $instance ) { if ( $instance && isset( $instance['title'] ) ) { $title = $instance['title']; } else { $title = __( 'Spam Blocked' , 'akismet' ); } ?> <p> <label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php esc_html_e( 'Title:' , 'akismet'); ?></label> <input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>" /> </p> <?php }