__( 'Forms', 'jetpack' ) ) ); $patterns = array( 'contact-form' => array( 'title' => 'Contact Form', 'blockTypes' => array( 'jetpack/contact-form' ), 'categories' => array( $category_slug ), 'content' => '
', ), 'newsletter-form' => array( 'title' => 'Newsletter Subscription Form', 'blockTypes' => array( 'jetpack/contact-form' ), 'categories' => array( $category_slug ), 'content' => '
', ), 'rsvp-form' => array( 'title' => 'RSVP Form', 'blockTypes' => array( 'jetpack/contact-form' ), 'categories' => array( $category_slug ), 'content' => '
', ), 'registration-form' => array( 'title' => 'Registration Form', 'blockTypes' => array( 'jetpack/contact-form' ), 'categories' => array( $category_slug ), 'content' => '
', ), 'appointment-form' => array( 'title' => 'Appointment Form', 'blockTypes' => array( 'jetpack/contact-form' ), 'categories' => array( $category_slug ), 'content' => '
', ), 'feedback-form' => array( 'title' => 'Feedback Form', 'blockTypes' => array( 'jetpack/contact-form' ), 'categories' => array( $category_slug ), 'content' => '
', ), ); foreach ( $patterns as $name => $pattern ) { register_block_pattern( $name, $pattern ); } }