Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 308 Bytes

shape-dividers.md

File metadata and controls

15 lines (11 loc) · 308 Bytes

breakdance_shape_dividers

add_filter('breakdance_shape_dividers', function ($dividers) {

    $myDivider = [
        'text' => 'My Divider',
        'value' => file_get_contents(__DIR__ . DIRECTORY_SEPARATOR . "my-divider.svg")
    ];

    $dividers[] = $myDivider;

    return $dividers;
});