Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
orderable
/
inc
/
modules
/
receipt-layouts
/
blocks
/
divider
/
src
:
render.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * Render Divider block. * * @package orderable */ // phpcs:ignore WordPress.WP.GlobalVariablesOverride $order = Orderable_Receipt_Layouts::get_order(); if ( ! $order ) { return; } $line_style = $attributes['lineStyle'] ?? 'dashed'; $height = $attributes['height'] ?? 2; $style = "border:none; border-top-style:{$line_style}; border-top-width:{$height}px"; ?> <div <?php echo wp_kses_data( Orderable_Receipt_Layouts::get_receipt_block_wrapper_attributes() ); ?>> <hr style="<?php echo esc_attr( $style ); ?>" /> </div>