# getwid/3.0.1/includes/blocks/template-parts/post-button.php

Getwid – Gutenberg Blocks, version 3.0.1. 75 lines.

- Page: https://pluginprobe.com/plugins/getwid/3.0.1/code/includes/blocks/template-parts/post-button.php
- Raw: https://pluginprobe.com/plugins/getwid/3.0.1/raw/includes/blocks/template-parts/post-button.php
- Modified: 2026-08-28T10:51:30+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/getwid/3.0.1/code/includes/blocks/template-parts/post-button.php#L10-L20`.

```php
<?php

namespace Getwid\Blocks\TemplateParts;

class PostButton extends \Getwid\Blocks\AbstractBlock {

	protected static $assets_handle = 'getwid/template-parts';

	public function __construct() {

		parent::__construct( 'getwid/template-post-button' );

		register_block_type(
			getwid_get_plugin_path( 'assets/blocks/template-parts/post-button' ),
			array(
				'render_callback' => array( $this, 'render_callback' ),
			)
		);
	}

	public function get_label() {
		return __( 'Button', 'getwid' );
	}

	public function can_be_disabled() {
		return false;
	}

	public function render_callback( $attributes, $content ) {

		if ( ( get_post_type() === getwid()->postTemplatePart()->postType ) || ( get_post_type() === 'revision' ) ) {
			return $content;
		}

		$block_name     = 'wp-block-getwid-template-post-button';
		$wrapper_class  = $block_name;
		$wrapper_class .= ' wp-block-button';
		$wrapper_style  = '';

		if ( isset( $attributes['className'] ) ) {
			$wrapper_class .= ' ' . esc_attr( $attributes['className'] );
		}

		if ( isset( $attributes['textAlignment'] ) ) {
			$wrapper_style .= 'text-align: ' . esc_attr( $attributes['textAlignment'] ) . ';';
		}

		$is_back_end = getwid_is_block_editor();
		$link_style  = '';
		$link_class  = 'wp-block-button__link';

		getwid_custom_color_style_and_class( $link_style, $link_class, $attributes, 'background', $is_back_end );
		getwid_custom_color_style_and_class( $link_style, $link_class, $attributes, 'color', $is_back_end );

		$extra_attr = array(
			'wrapper_class' => $wrapper_class,
			'wrapper_style' => $wrapper_style,
			'link_class'    => $link_class,
			'link_style'    => $link_style,
		);

		ob_start();

		getwid_get_template_part( 'template-parts/post-button', $attributes, false, $extra_attr );

		$result = ob_get_clean();

		return $result;
	}
}

getwid()->blocksManager()->addBlock(
	new PostButton()
);

```
