# gutenberg/10.1.0/build/block-library/blocks/post-featured-image.php

Gutenberg, version 10.1.0. 48 lines.

- Page: https://pluginprobe.com/plugins/gutenberg/10.1.0/code/build/block-library/blocks/post-featured-image.php
- Raw: https://pluginprobe.com/plugins/gutenberg/10.1.0/raw/build/block-library/blocks/post-featured-image.php
- Modified: 2021-02-17T12:51:44+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/gutenberg/10.1.0/code/build/block-library/blocks/post-featured-image.php#L10-L20`.

```php
<?php
/**
 * Server-side rendering of the `core/post-featured-image` block.
 *
 * @package WordPress
 */

/**
 * Renders the `core/post-featured-image` block on the server.
 *
 * @param array    $attributes Block attributes.
 * @param string   $content    Block default content.
 * @param WP_Block $block      Block instance.
 * @return string Returns the featured image for the current post.
 */
function gutenberg_render_block_core_post_featured_image( $attributes, $content, $block ) {
	if ( ! isset( $block->context['postId'] ) ) {
		return '';
	}
	$post_ID = $block->context['postId'];

	$featured_image = get_the_post_thumbnail( $post_ID );
	if ( ! $featured_image ) {
		return '';
	}

	if ( isset( $attributes['isLink'] ) && $attributes['isLink'] ) {
		$featured_image = sprintf( '<a href="%1s">%2s</a>', get_the_permalink( $post_ID ), $featured_image );
	}

	$wrapper_attributes = get_block_wrapper_attributes();

	return '<p ' . $wrapper_attributes . '>' . $featured_image . '</p>';
}

/**
 * Registers the `core/post-featured-image` block on the server.
 */
function gutenberg_register_block_core_post_featured_image() {
	register_block_type_from_metadata(
		__DIR__ . '/post-featured-image',
		array(
			'render_callback' => 'gutenberg_render_block_core_post_featured_image',
		)
	);
}
add_action( 'init', 'gutenberg_register_block_core_post_featured_image', 20 );

```
