function hook_single_page_site_output in Single Page Site 7
Example of how to use hook_single_page_site_output().
File
- ./
single_page_site.api.php, line 11 - API documentation for Single Page Site.
Code
function hook_single_page_site_output(&$output, $current_item_count) {
// Alter the output of the current page.
$output .= 'Attach string';
}