<?php

/**
 * Sidebar Single Bottom Template
 *
 * …
 * 
 * @package Thematic
 * @subpackage Templates
 */
// action hook for placing content above the 'single-bottom' widget area
thematic_abovesinglebottom();
// action hook for creating the 'single-bottom' widget area
thematic_widget_area_single_bottom();
// action hook for placing content below the 'single-bottom' widget area
thematic_belowsinglebottom();
Esempio n. 2
0
/**
 * Register action hook: widget_area_single_bottom 
 *
 * Removed for namespacing
 *
 * @deprecated 1.0
 */
function widget_area_single_bottom()
{
    _deprecated_function(__FUNCTION__, '1.0', 'thematic_widget_area_single_bottom()');
    thematic_widget_area_single_bottom();
}