Blog->method() info/samples
Intra-page navigation (TOC)
theoretically helpful textlorem ipsum
Blog->contact_linkMinimum params with defaults shown >> chasing $params <<
<?php
// display a link to contact the current blog owner
$Blog->contact_link( array(
'before' => '',
'after' => ' ',
'title' => T_('Send a message to the owner of this blog...'),
) );
?>
⇑ top of page ⇑
Blog->credits_linkMinimum params with defaults shown >> chasing $params <<
<?php
// display a link to this blog's credits page
$Blog->credits_link( array(
'before' => '',
'after' => ' ',
'text' => T_('software credits'),
'title' => T_('See who wrote the code that helps make this website'),
'class' => '',
) );
?>
⇑ top of page ⇑
Blog->footer_textMinimum params with defaults shown >> chasing $params <<
<?php
// displays current blog's footer text
$Blog->footer_text( array(
'before' => '',
'after' => ' ',
) );
?>
⇑ top of page ⇑
Blog->longdescMinimum params with defaults shown >> chasing $params <<
<?php
// displays current blog's long description
$Blog->longdesc( array(
'before' => '',
'after' => ' ',
'format' => 'htmlbody',
) );
?>
⇑ top of page ⇑
Blog->nameMinimum params with defaults shown >> chasing $params <<
<?php
// displays current blog's (full) name
$Blog->name( array(
'before' => '',
'after' => ' ',
'format' => 'htmlbody',
) );
?>
⇑ top of page ⇑
Blog->taglineMinimum params with defaults shown >> chasing $params <<
<?php
// display the current blog's tagline
$Blog->tagline( array(
'before' => '',
'after' => ' ',
'format' => 'htmlbody',
) );
?>
⇑ top of page ⇑
| Prev |
Up |
Next |
| template_********() info/samples |
Templates Tutorials |
Comment->method() info/samples |
|
|