# post-carousel/4.0.2/admin/views/sp-framework/fields/heading/heading.php

Smart Post – Post Grid, Post Carousel, Post Slider Gutenberg Blocks for Blog &amp; News, version 4.0.2. 46 lines.

- Page: https://pluginprobe.com/plugins/post-carousel/4.0.2/code/admin/views/sp-framework/fields/heading/heading.php
- Raw: https://pluginprobe.com/plugins/post-carousel/4.0.2/raw/admin/views/sp-framework/fields/heading/heading.php
- Modified: 2025-08-25T10:53:50+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/post-carousel/4.0.2/code/admin/views/sp-framework/fields/heading/heading.php#L10-L20`.

```php
<?php
/**
 * The framework heading fields file.
 *
 * @package Smart_Post_Show
 * @subpackage Smart_Post_Show/admin
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'SP_PC_Field_heading' ) ) {
	/**
	 * SP_PC_Field_heading
	 */
	class SP_PC_Field_heading extends SP_PC_Fields {

		/**
		 * Field constructor.
		 *
		 * @param array  $field The field type.
		 * @param string $value The values of the field.
		 * @param string $unique The unique ID for the field.
		 * @param string $where To where show the output CSS.
		 * @param string $parent The parent args.
		 */
		public function __construct( $field, $value = '', $unique = '', $where = '', $parent = '' ) {
			parent::__construct( $field, $value, $unique, $where, $parent );
		}

		/**
		 * The render method.
		 *
		 * @return void
		 */
		public function render() {
			$version = ! empty( $this->field['version'] ) ? $this->field['version'] : '';
			echo ( ! empty( $this->field['content'] ) ) ? wp_kses_post( $this->field['content'] ) : '';
			echo ( ! empty( $this->field['image'] ) ) ? '<div class="heading-wrapper"><img src="' . esc_url( $this->field['image'] ) . '"><span class="sp-pcp-version">v' . esc_html( $version ) . '</span></div>' : '';

			echo ( ! empty( $this->field['after'] ) && ! empty( $this->field['link'] ) ) ? '<span class="spf-support-area"><span class="support">' . $this->field['after'] . '</span><div class="spf-help-text  spf-support"><div class="spf-info-label">Documentation</div>Check out our documentation and more information about what you can do with the Smart Post Show.<a class="spf-open-docs browser-docs" href="https://docs.shapedplugin.com/docs/post-carousel-pro/introduction/" target="_blank">Browse Docs</a><div class="spf-info-label">Need Help or Missing a Feature?</div>Feel free to get help from our friendly support team or request a new feature if needed. We appreciate your suggestions to make the plugin better.<a class="spf-open-docs support" href="https://shapedplugin.com/create-new-ticket/" target="_blank">Get Help</a><a class="spf-open-docs feature-request" href="https://shapedplugin.com/contact-us/" target="_blank">Request a Feature</a></div></span>' : '';//phpcs:ignore
		}
	}
}

```
