You appear to be a bot. Output may be restricted
Description
Format a sanitized title= parameter
Note: More often than not, for a11y, the title= parameter is not recommended.
Usage
$$string = atitle( $title );
Parameters
- $title
- ( mixed ) optional –
Returns
$string
Source
File name: oik-bwtrace/libs/bobbfunc.php
Lines:
1 to 5 of 5
function atitle( $title=NULL ) { $title = wp_strip_all_tags( $title ); $title = esc_attr( $title ); return( kv( "title", $title ) ); }