remove_control( 'hide_front_page_title'); } add_action( 'customize_register', 'blank_canvas_wpcom_customize_update', 11 ); /** * Register WP.com-only block patterns. */ if ( ! function_exists( 'blank_canvas_register_wpcom_block_patterns' ) ) : function blank_canvas_register_wpcom_block_patterns() { if ( function_exists( 'register_block_pattern' ) ) { /* This pattern is WP.com-only because it relies on the Layout Grid block. */ register_block_pattern( 'blank-canvas/card', array( 'title' => __( 'Card', 'blank-canvas' ), 'categories' => array( 'blank-canvas' ), 'content' => '
' . __( 'Portrait of a woman against a pink and blue background.', 'blank-canvas' ) . '

' . __( 'Kate Pollard', 'blank-canvas' ) . '

' . __( 'Hi! I’m a lead strategist for growing sustainable revenue streams for integrated fundraising.', 'blank-canvas' ) . '

', ) ); /* This pattern is WP.com-only because it relies on the Contact Form block. */ register_block_pattern( 'blank-canvas/email-signup', array( 'title' => __( 'Email Signup', 'blank-canvas' ), 'categories' => array( 'blank-canvas' ), 'content' => '

' . __( 'Virtual Art Classes', 'blank-canvas' ) . '

' . __( 'Join instructor Jaime Adams for a series of virtual classes aimed at helping you hone your drawing skills. We will focus on composition, perspective, contour, representing volume, and more!', 'blank-canvas' ) . '

', ) ); } } endif; add_action( 'after_setup_theme', 'blank_canvas_register_wpcom_block_patterns', 12 );