You appear to be a bot. Output may be restricted
Description
Displays the toggle button for the postbox
Usage
BW_::oik_handlediv( $title );
Parameters
- $title
- ( string ) required – translated title
Returns
voidSource
File name: oik-bwtrace/libs/class-BW-.phpLines:
1 to 9 of 9
static function oik_handlediv( $title ) { /* translators: %s: panel title */ $title = sprintf( __( 'Toggle panel: %s', null ), $title ); e( '<button type="button" class="handlediv" aria-expanded="true">' ); e( '<span class="screen-reader-text">' . $title . '</span>' ); e( '<span class="toggle-indicator" aria-hidden="true">' ); e( '</span>' ); e( '</button>' ); }View on GitHub View on Trac