40 lines
2.3 KiB
PHP
40 lines
2.3 KiB
PHP
<?php
|
|
/**
|
|
* Block Pattern: CTA Section
|
|
*
|
|
* @package CyyWordpress
|
|
*/
|
|
|
|
register_block_pattern(
|
|
'cyywordpress/cta-section',
|
|
array(
|
|
'title' => esc_html__( '行动号召区域', 'cyywordpress' ),
|
|
'description' => esc_html__( '中心对齐的行动号召区域,含标题、描述和按钮。', 'cyywordpress' ),
|
|
'categories' => array( 'cyywordpress' ),
|
|
'content' => '<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"var:preset|spacing|70","bottom":"var:preset|spacing|70"}},"color":{"background":"var:preset|color|light"}},"layout":{"type":"constrained"}} -->
|
|
<div class="wp-block-group alignfull has-background" style="background-color:var(--wp--preset--color--light);padding-top:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--70)">
|
|
<!-- wp:group {"layout":{"type":"flex","orientation":"vertical","justifyContent":"center"}} -->
|
|
<div class="wp-block-group">
|
|
<!-- wp:heading {"textAlign":"center","level":2} -->
|
|
<h2 class="wp-block-heading has-text-align-center">' . esc_html__( '准备好开始了吗?', 'cyywordpress' ) . '</h2>
|
|
<!-- /wp:heading -->
|
|
<!-- wp:paragraph {"align":"center","style":{"typography":{"fontSize":"1.125rem"}}} -->
|
|
<p class="has-text-align-center" style="font-size:1.125rem">' . esc_html__( '加入我们,探索更多精彩内容。', 'cyywordpress' ) . '</p>
|
|
<!-- /wp:paragraph -->
|
|
<!-- wp:buttons {"layout":{"type":"flex","justifyContent":"center"},"style":{"spacing":{"margin":{"top":"var:preset|spacing|40"}}}} -->
|
|
<div class="wp-block-buttons" style="margin-top:var(--wp--preset--spacing--40)">
|
|
<!-- wp:button {"backgroundColor":"primary","textColor":"white","style":{"border":{"radius":"6px"}}} -->
|
|
<div class="wp-block-button"><a class="wp-block-button__link has-primary-background-color has-white-color has-text-color has-background wp-element-button" style="border-radius:6px">' . esc_html__( '立即开始', 'cyywordpress' ) . '</a></div>
|
|
<!-- /wp:button -->
|
|
<!-- wp:button {"className":"is-style-outline","style":{"border":{"radius":"6px"}}} -->
|
|
<div class="wp-block-button is-style-outline"><a class="wp-block-button__link wp-element-button" style="border-radius:6px">' . esc_html__( '了解更多', 'cyywordpress' ) . '</a></div>
|
|
<!-- /wp:button -->
|
|
</div>
|
|
<!-- /wp:buttons -->
|
|
</div>
|
|
<!-- /wp:group -->
|
|
</div>
|
|
<!-- /wp:group -->',
|
|
)
|
|
);
|