Function Reference: geodir_action_wrapper_close

Summary

Outputs the closing HTML wrapper div 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_wrapper_close() is located in geodirectory_template_actions.php [Line: 430]

Source Code

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