artblockheader_30() – Create a block header if the title text is specified

You appear to be a bot. Output may be restricted

Description

Create a block header if the title text is specified

Usage

artblockheader_30( $title, $link, $icon );

Parameters

$title
( mixed ) optional
$link
( mixed ) optional
$icon
( mixed ) optional

Returns

void

Source

File name: oik/bw_block_30.inc
Lines:

1 to 12 of 12
function artblockheader_30( $title=NULL, $link=NULL, $icon=NULL ) {
  if ( $title ) {  
    sdiv( "art-blockheader");
    //sdivslr( "art-header-tag-icon" );
    sediv( 'l' );
    sediv( 'r' );
    h3( $title, "t" );
    //sdiv( "t" );
    //t( $title );
    ediv();
  }
} 
 

 View on Trac