Function Reference: geodir_action_sidebar_left_close

Summary

Outputs the listings page left sidebar closing HTML wrapper if enabled.

Description

Can be enabled disabled from GD>Design>Listings page.

Package

GeoDirectory

Parameters

$type
(string) (optional) Depreciated.

Default: None

Change Log

Since: 1.0.0

Source File

geodir_action_sidebar_left_close() is located in geodirectory_template_actions.php [Line: 1843]

Source Code

function geodir_action_sidebar_left_close($type = '')
{
    $tc = get_option('theme_compatibility_setting');
    if (!empty($tc['geodir_sidebar_left_close_replace'])) {
        $text = $tc['geodir_sidebar_left_close_replace'];
    } else {
        $text = '';
    }
    echo $text;
}