Function Reference: geodir_action_sidebar_right_close

Summary

Outputs the closing HTML aside right sidebar wrapper if the compatibility settings are present.

Package

GeoDirectory

Parameters

$type
(string) (optional) Depreciated.

Default: None

Change Log

Since: 1.0.0

Source File

geodir_action_sidebar_right_close() is located in geodirectory_template_actions.php [Line: 615]

Source Code

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