Skip to content

Instantly share code, notes, and snippets.

@gdarko
Last active November 27, 2024 12:27
Show Gist options
  • Save gdarko/1773b8b66cc348c78ff71fbccecc3637 to your computer and use it in GitHub Desktop.
Save gdarko/1773b8b66cc348c78ff71fbccecc3637 to your computer and use it in GitHub Desktop.
Custom Bricks Slider
<?php
/**
* Register custom elements
*/
add_action( 'init', function() {
$element_files = [
__DIR__ . '/elements/flavor-gallery.php',
];
foreach ( $element_files as $file ) {
\Bricks\Elements::register_element( $file );
}
}, 100 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment