Description
Format a sanitized title= parameterNote: More often than not, for a11y, the title= parameter is not recommended.
Usage
$$string = atitle( $title );Parameters
- $title
- ( mixed ) optional –
Returns
$stringSource
File name: oik-bwtrace/libs/bobbfunc.phpLines:
1 to 5 of 5
function atitle( $title=NULL ) { $title = wp_strip_all_tags( $title ); $title = esc_attr( $title ); return( kv( "title", $title ) ); }View on GitHub View on Trac
Invoked by
Call hooks
API Letters:
