You appear to be a bot. Output may be restricted
Description
Outputs a paragraph of translated text
Usage
BW_::p( $text, $class, $id );
Parameters
- $text
- ( string ) optional – translated text – expected to be non-null
- $class
- ( string ) optional – CSS class(es)
- $id
- ( string ) optional – CSS ID
Returns
voidSource
File name: oik-bwtrace/libs/class-BW-.phpLines:
1 to 7 of 7
static function p( $text=null, $class=null, $id=null ) { sp( $class, $id ); if ( !is_null( $text ) ) { e( $text ); } etag( "p" ); }View on GitHub View on Trac