Skip to content

Instantly share code, notes, and snippets.

View derBoogie's full-sized avatar

Thomas Jirasko derBoogie

View GitHub Profile
@yanknudtskov
yanknudtskov / avia-shortcode-overrides.php
Last active February 28, 2024 10:50
Avia Shortcodes Override. Place override shortcodes in /avia-override-shortcodes/ #enfold #shortcodes
/**
* Avia Shortcode Overrides
*/
add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
function avia_include_shortcode_template($paths)
{
$template_url = get_stylesheet_directory();
array_unshift($paths, $template_url.'/avia-override-shortcodes/');
return $paths;