__( 'Blank Canvas', 'blank-canvas' ) ) ); } /** * Register Block Patterns. */ if ( function_exists( 'register_block_pattern' ) ) { register_block_pattern( 'blank-canvas/about-me', array( 'title' => __( 'About Me', 'blank-canvas' ), 'categories' => array( 'blank-canvas' ), 'content' => '
' . __( 'A photo of a tattooed hand, giving the

' . __( 'Hi! I’m a tattooist based in Florida City.', 'blank-canvas' ) . '

' . __( 'Specializing in fine line tattoos with a single needle. With over 10 years of experience, I can make your tattoo dreams come true.', 'blank-canvas' ) . '

', ) ); register_block_pattern( 'blank-canvas/links', array( 'title' => __( 'Links', 'blank-canvas' ), 'categories' => array( 'blank-canvas' ), 'content' => '
' . __( 'Photo of a man wearing a hat.', 'blank-canvas' ) . '

' . __( 'Alex Fredrickson', 'blank-canvas' ) . '

' . __( 'My latest and greatest tips, resources, and reads.
So much goodness all in one place!', 'blank-canvas' ) . '

' . __( 'Must read: The Place That Made Me', 'blank-canvas' ) . '
' . __( 'Rain Journal by Richard Johnson', 'blank-canvas' ) . '
' . __( '10th Day of Rain', 'blank-canvas' ) . '
' . __( 'Blurring the Lines Between Architecture and Nature', 'blank-canvas' ) . '
' . __( 'Instant Classic: A story of Persistence', 'blank-canvas' ) . '
', ) ); register_block_pattern( 'blank-canvas/invitation', array( 'title' => __( 'Invitation', 'blank-canvas' ), 'categories' => array( 'blank-canvas' ), 'content' => '
Photo of two drinks.

' . __( 'You’re Invited', 'blank-canvas' ) . '

' . __( 'Pier 38
San Francisco, CA', 'blank-canvas' ) . '

' . __( '8pm–12am
April 16th', 'blank-canvas' ) . '


' . __( 'Join us for a celebratory party featuring creative cocktails and mocktails, seasonal chef-crafted snacks and appetizers, and a range of desserts and pastries from local bakeries.', 'blank-canvas' ) . '

', ) ); register_block_pattern( 'blank-canvas/split-screen', array( 'title' => __( 'Split Screen', 'blank-canvas' ), 'categories' => array( 'blank-canvas' ), 'content' => '
' . __( 'Photo of a vintage camera.', 'blank-canvas' ) . '
' . __( 'Photo of a woman.', 'blank-canvas' ) . '

' . __( 'Jasmine Baker', 'blank-canvas' ) . '

' . __( 'Hello! I am a photographer and designer living near Portland, Maine. When I am not posting to Instagram, you can find me shooting weddings and portraits.', 'blank-canvas' ) . '

', ) ); } /** * Unregister Seedlet Block Pattern Category. */ if ( function_exists( 'unregister_block_pattern_category' ) ) { unregister_block_pattern_category( 'seedlet' ); } /** * Unregister Block Patterns from Seedlet. */ if ( function_exists( 'unregister_block_pattern' ) ) { unregister_block_pattern( 'seedlet/group-split-background' ); unregister_block_pattern( 'seedlet/group-image-overlap' ); unregister_block_pattern( 'seedlet/latest-posts-alternating-grid' ); } } endif; add_action( 'after_setup_theme', 'blank_canvas_register_block_patterns', 12 );