2023-05-03 16:11:24 +00:00
< ? php
/**
2023-06-21 07:50:12 +00:00
* Title : Hero Product Split
2023-05-03 16:11:24 +00:00
* Slug : woocommerce - blocks / hero - product - split
* Categories : WooCommerce
*/
2023-09-19 07:05:44 +00:00
2023-09-25 09:48:52 +00:00
use Automattic\WooCommerce\Blocks\Patterns\PatternsHelper ;
$content = PatternsHelper :: get_pattern_content ( 'woocommerce-blocks/hero-product-split' );
$images = PatternsHelper :: get_pattern_images ( 'woocommerce-blocks/hero-product-split' );
2023-05-03 16:11:24 +00:00
?>
2023-07-19 12:21:41 +00:00
<!-- wp : media - text { " align " : " full " , " mediaPosition " : " right " , " mediaType " : " image " , " mediaSizeSlug " : " full " , " imageFill " : false } -->
< div class = " wp-block-media-text alignfull has-media-on-the-right is-stacked-on-mobile " >
2023-05-12 15:00:16 +00:00
< div class = " wp-block-media-text__content " >
2023-07-19 12:21:41 +00:00
<!-- wp : heading -->
2023-09-25 09:48:52 +00:00
< h2 class = " wp-block-heading " >< ? php echo esc_html ( $content [ 'titles' ][ 0 ][ 'default' ] ); ?> </h2>
2023-05-03 16:11:24 +00:00
<!-- / wp : heading -->
<!-- wp : buttons { " style " : { " spacing " : { " margin " : { " bottom " : " var:preset|spacing|40 " }}}} -->
< div class = " wp-block-buttons " style = " margin-bottom:var(--wp--preset--spacing--40) " >
2023-07-19 12:21:41 +00:00
<!-- wp : button -->
2023-05-12 15:00:16 +00:00
< div class = " wp-block-button " >
2023-07-19 12:21:41 +00:00
< a href = " <?php echo esc_url( get_permalink( wc_get_page_id( 'shop' ) ) ); ?> " class = " wp-block-button__link wp-element-button " >< ? php esc_html_e ( 'Shop now' , 'woo-gutenberg-products-block' ); ?> </a>
2023-05-12 15:00:16 +00:00
</ div >
<!-- / wp : button -->
2023-05-03 16:11:24 +00:00
</ div >
<!-- / wp : buttons -->
</ div >
< figure class = " wp-block-media-text__media " >
2023-09-25 09:48:52 +00:00
< img src = " <?php echo esc_url( PatternsHelper::get_image_url( $images , 0, 'images/pattern-placeholders/pattern-fashion-clothing-outerwear-wool-scarf.png' ) ); ?> " alt = " <?php esc_attr_e( 'Placeholder image used to represent a product being showcased in a hero section.', 'woo-gutenberg-products-block' ); ?> " />
2023-05-03 16:11:24 +00:00
</ figure >
</ div >
<!-- / wp : media - text -->