Template Tag: Credits
Display credits.
You can limit (and even disable) the number of links being displayed by its tag though the Admin interface:
‘Blog Settings > Advanced > Software credits’
Example
// Display additional credits (see /conf/):
// If you can add your own credits without removing the defaults, you'll be very cool :))
// Please leave this at the bottom of the page to make sure your blog gets listed on b2evolution.net
credits( array(
'list_start' => ' | ',
'list_end' => ' ',
'separator' => '|',
'item_start' => ' ',
'item_end' => ' ',
) );
Parameters
- Name: list_start
- Deafult: (1 space)
- Usage: Displayed before credits.
- Name: list_end
- Deafult: (1 space)
- Usage: Displayed after credits.
- Name: item_start
- Deafult: (1 space)
- Usage: Displayed before item in credits list.
- Name: item_end
- Deafult: (1 space)
- Usage: Displayed after item in credits list.
- Name: separator
- Deafult: ‘, ‘
- Usage: Separator between credits.
- Name: after_item
- Deafult: ‘#’
- Usage: If ‘after_item’ is not ‘#’ then show ‘after_item’ value after item.
Return value
This tag displays content only, it does not have a return value.