Function Reference: geodir_action_article_close

Summary

Outputs the closing HTML article 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_article_close() is located in geodirectory_template_actions.php [Line: 550]

Source Code

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