/home/techb158/immovalet.com/platform/packages/shortcode/helpers
Edit: /home/techb158/immovalet.com/platform/packages/shortcode/helpers/helpers.php (1071B)
register($key, $name, $description, $callback);
}
}
if (!function_exists('do_shortcode')) {
/**
* @param string $content
* @return string
*/
function do_shortcode($content)
{
return shortcode()->compile($content);
}
}
if (!function_exists('generate_shortcode')) {
/**
* @param string $name
* @param array $attributes
* @return string
*/
function generate_shortcode($name, array $attributes = [])
{
return shortcode()->generateShortcode($name, $attributes);
}
}