esc_html__( 'Site footers', 'armando' ) ) ); } /** * Register Block Patterns. */ if ( function_exists( 'register_block_pattern' ) ) { register_block_pattern( 'armando/footer-one', array( 'title' => esc_html__( 'Default footer', 'armando' ), 'categories' => array( 'site-footer' ), 'description' => esc_html__( 'The default footer. 3 Columns with social links, contact information and latest posts. Copyright below the columns.', 'armando' ), 'content' => ' ', ) ); register_block_pattern( 'armando/footer-two', array( 'title' => esc_html__( 'Footer with call to action, social links, contact information and latest posts.', 'armando' ), 'categories' => array( 'site-footer' ), 'content' => '

' . esc_html_x( 'Never miss the latest news', 'sample content', 'armando' ) . '

' . esc_html_x( 'Contact', 'sample content', 'armando' ) . '

' . _x( 'Company name
Street
City', 'sample content', 'armando' ) . '

' . _x( 'Phone: 00 00 00 00
example@example.org', 'sample content', 'armando' ) . '

', ) ); register_block_pattern( 'armando/footer-three', array( 'title' => esc_html__( 'Minimalistic footer', 'armando' ), 'categories' => array( 'site-footer' ), 'description' => esc_html__( 'A minimalistic footer with Copyright information.', 'armando' ), 'content' => '

' . esc_html__( 'Copyright', 'armando' ) . ' ' . /* translators: Copyright date format, see https://www.php.net/date */ esc_html( date_i18n( _x( 'Y', 'copyright date format', 'armando' ) ) ) . '

', ) ); register_block_pattern( 'armando/footer-four', array( 'title' => esc_html__( 'Footer with logo, contact information, social links and copyright.', 'armando' ), 'categories' => array( 'site-footer' ), 'content' => '

' . _x( 'Company name
Street
City', 'sample content', 'armando' ) . '

' . _x( 'Phone: 00 00 00 00
example@example.org', 'sample content', 'armando' ) . '


' . esc_html__( 'Copyright', 'armando' ) . ' ' . /* translators: Copyright date format, see https://www.php.net/date */ esc_html( date_i18n( _x( 'Y', 'copyright date format', 'armando' ) ) ) . '

', ) ); }