# ultimate-post/5.0.24/blocks/Post_Grid_4.php

Post Grid Gutenberg Blocks – PostX, version 5.0.24. 445 lines.

- Page: https://pluginprobe.com/plugins/ultimate-post/5.0.24/code/blocks/Post_Grid_4.php
- Raw: https://pluginprobe.com/plugins/ultimate-post/5.0.24/raw/blocks/Post_Grid_4.php
- Modified: 2026-06-04T11:44:18+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/ultimate-post/5.0.24/code/blocks/Post_Grid_4.php#L10-L20`.

```php
<?php

namespace ULTP\blocks;

defined( 'ABSPATH' ) || exit;

class Post_Grid_4 {

	public function __construct() {
		add_action( 'init', array( $this, 'register' ) );
	}

	public function get_attributes() {

		return array(
			'blockId'                => '',
			'previewImg'             => '',
			// --------------------------
			// Layout
			// --------------------------
			'layout'                 => 'layout1',

			// --------------------------
			// Query Setting
			// --------------------------
			'queryQuick'             => '',
			'queryNumber'            => 3,
			'queryType'              => 'post',
			'queryTax'               => 'category',
			'queryTaxValue'          => '[]',
			'queryRelation'          => 'OR',
			'queryOrderBy'           => 'date',
			'metaKey'                => 'custom_meta_key',
			'queryOrder'             => 'desc',
			// Include Remove from Version 2.5.4
			'queryInclude'           => '',
			'queryExclude'           => '[]',
			'queryAuthor'            => '[]',
			'queryOffset'            => '0',
			'queryExcludeTerm'       => '[]',
			'queryExcludeAuthor'     => '[]',
			'querySticky'            => true,
			'queryUnique'            => '',
			'queryPosts'             => '[]',
			'queryCustomPosts'       => '[]',
			// --------------------------
			// General Setting
			// --------------------------
			'columnFlip'             => false,
			'titleShow'              => true,
			'titleStyle'             => 'none',
			// 'titleAnimColor' =>  'black',
			'headingShow'            => true,
			'excerptShow'            => true,
			'catShow'                => true,
			'metaShow'               => true,
			'showImage'              => true,
			'filterShow'             => false,
			'paginationShow'         => false,
			'readMore'               => false,
			'contentTag'             => 'div',
			'openInTab'              => false,
			'notFoundMessage'        => 'No Post Found',

			// --------------------------
			// Heading Setting/Style
			// --------------------------
			'headingText'            => 'Post Grid #4',
			'headingURL'             => '',
			'headingBtnText'         => 'View More',
			'headingStyle'           => 'style1',
			'headingTag'             => 'h2',
			'headingAlign'           => 'left',
			'subHeadingShow'         => false,
			'subHeadingText'         => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer ut sem augue. Sed at felis ut enim dignissim sodales.',

			// --------------------------
			// Title Setting/Style
			// --------------------------
			'titleTag'               => 'h3',
			'titleAnimation'         => '',
			'titlePosition'          => true,
			'titleLength'            => 0,

			// --------------------------
			// Overlay Content Setting/Style
			// --------------------------
			'overlayContentPosition' => 'bottomPosition',

			// --------------------------
			// Content Setting/Style
			// --------------------------
			'showSeoMeta'            => false,
			'showSmallExcerpt'       => false,
			'showFullExcerpt'        => false,
			'excerptLimit'           => 20,

			// --------------------------
			// Category Setting/Style
			// --------------------------
			'maxTaxonomy'            => '30',
			'taxonomy'               => 'category',
			'showSmallCat'           => true,
			'catStyle'               => 'classic',
			'catPosition'            => 'aboveTitle',
			'customCatColor'         => false,
			'seperatorLink'          => admin_url( 'edit-tags.php?taxonomy=category' ),
			'onlyCatColor'           => false,

			// --------------------------
			// Meta Setting/Style
			// --------------------------
			'metaPosition'           => 'top',
			'metaStyle'              => 'icon',
			'authorLink'             => true,
			'metaSeparator'          => 'dot',
			'metaList'               => '["metaAuthor","metaDate","metaRead"]',
			'metaMinText'            => 'min read',
			'metaAuthorPrefix'       => 'By',
			'metaDateFormat'         => 'M j, Y',
			'metaListSmall'          => '["metaAuthor","metaDate"]',

			// --------------------------
			// Image Setting/Style
			// --------------------------
			'imgCrop'                => ( ultimate_post()->get_setting( 'disable_image_size' ) == 'yes' ? 'full' : 'ultp_layout_landscape' ),
			'imgCropSmall'           => ( ultimate_post()->get_setting( 'disable_image_size' ) == 'yes' ? 'full' : 'ultp_layout_square' ),
			'imgAnimation'           => 'zoomIn',
			'imgOverlay'             => true,
			'imgOverlayType'         => 'flat',
			'fallbackEnable'         => true,
			'fallbackImg'            => '',
			'imgSrcset'              => false,
			'imgLazy'                => false,

			// --------------------------
			// Video Icon Setting
			// --------------------------
			'vidIconEnable'          => true,
			'popupAutoPlay'          => true,
			'iconSize'               => (object) array(
				'lg'   => '40',
				'sm'   => '30',
				'xs'   => '30',
				'unit' => 'px',
			),
			// by default should be off
			'enablePopup'            => false,
			'enablePopupTitle'       => true,

			// --------------------------
			// Read more Setting/Style
			// --------------------------
			'showSmallBtn'           => false,
			'readMoreText'           => '',
			'readMoreIcon'           => 'rightArrowLg',

			// --------------------------
			// Filter Setting/Style
			// --------------------------
			'filterBelowTitle'       => false,
			'filterType'             => 'category',
			'filterText'             => 'all',
			'filterValue'            => '[]',
			'filterMobile'           => true,
			'filterMobileText'       => 'More',

			// --------------------------
			// Pagination Setting/Style
			// --------------------------
			'paginationType'         => 'navigation',
			'paginationNav'          => 'textArrow',
			'navPosition'            => 'topRight',

			// --------------------------
			// Wrapper Style
			// --------------------------
			'advanceId'              => '',
			'advanceZindex'          => '',
			'hideExtraLarge'         => false,
			'hideTablet'             => false,
			'hideMobile'             => false,
			'advanceCss'             => '',
			'currentPostId'          => '',

			// --------------------------------
			// Advance Filter Block Compatibility
			// --------------------------------
			'advFilterEnable'        => false,
			'querySearch'            => '',

			// --------------------------------
			// Pagination block compatibility
			// --------------------------------
			'advPaginationEnable'    => false,
			'paginationAjax'         => true,
			'paginationText'         => 'Previous|Next',
			'loadMoreText'           => 'Load More',
			'queryNumPosts'          => (object) array( 'lg' => 3 ),
			'queryNumber2'           => 4,
			'notFirstLoad'           => false,
			'defQueryTax'            => array(),
			'advRelation'            => 'AND',

			/*
			============================
				Dynamic Content
			============================*/
			'dcEnabled'              => false,
			'dcFields'               => array(),
			'dcSize'                 => 8,
		);
	}

	public function register() {
		register_block_type(
			'ultimate-post/post-grid-4',
			array(
				'editor_script'   => 'ultp-blocks-editor-script',
				'editor_style'    => 'ultp-blocks-editor-css',
				'render_callback' => array( $this, 'content' ),
			)
		);
	}

	public function content( $attr, $noAjax ) {
		$attr = wp_parse_args( $attr, $this->get_attributes() );
		global $unique_ID;

		if ( ! $noAjax ) {
			$paged         = is_front_page() ? get_query_var( 'page' ) : get_query_var( 'paged' );
			$attr['paged'] = $paged ? $paged : 1;
		}
		if ( $attr['queryUnique'] && isset( $attr['savedQueryUnique'] ) ) {
			$unique_ID = $attr['savedQueryUnique'];
		}

		$block_name        = 'post-grid-4';
		$vid_icon_redirect = true; // Its used for video icon do not remove it

		$wraper_before = $wraper_after = $post_loop = '';
		$recent_posts  = new \WP_Query( ultimate_post()->get_query( $attr ) );
		$pageNum       = ultimate_post()->get_page_number( $attr, $recent_posts->found_posts );
		// Dummy Img Url
		$dummy_url = ULTP_URL . 'assets/img/ultp-fallback-img.png';

		// Loadmore and Unique content
		if ( $attr['queryUnique'] && isset( $attr['loadMoreQueryUnique'] ) && $attr['paginationShow'] && ( $attr['paginationType'] == 'loadMore' ) ) {
			$unique_ID            = $attr['loadMoreQueryUnique'];
			$current_unique_posts = $attr['ultp_current_unique_posts'];
		}

		$attr['className']              = isset( $attr['className'] ) && $attr['className'] ? preg_replace( '/[^A-Za-z0-9_ -]/', '', $attr['className'] ) : '';
		$attr['align']                  = isset( $attr['align'] ) && $attr['align'] ? preg_replace( '/[^A-Za-z0-9_ -]/', '', $attr['align'] ) : '';
		$attr['advanceId']              = isset( $attr['advanceId'] ) ? sanitize_html_class( $attr['advanceId'] ) : '';
		$attr['blockId']                = isset( $attr['blockId'] ) ? sanitize_html_class( $attr['blockId'] ) : '';
		$attr['contentTag']             = in_array( $attr['contentTag'], ultimate_post()->ultp_allowed_block_tags() ) ? $attr['contentTag'] : 'div';
		$attr['layout']                 = sanitize_html_class( $attr['layout'] );
		$attr['imgAnimation']           = sanitize_html_class( $attr['imgAnimation'] );
		$attr['imgOverlayType']         = sanitize_html_class( $attr['imgOverlayType'] );
		$attr['popupAutoPlay']          = $attr['popupAutoPlay'] == true;
		$attr['readMoreText']           = wp_kses( $attr['readMoreText'], ultimate_post()->ultp_allowed_html_tags() );
		$attr['titleAnimation']         = sanitize_html_class( $attr['titleAnimation'] );
		$attr['overlayContentPosition'] = sanitize_html_class( $attr['overlayContentPosition'] );
		$attr['columnFlip']             = $attr['columnFlip'] == true;

		if ( $recent_posts->have_posts() ) {

			// Pagination Block Html
			include ULTP_PATH . 'blocks/template/pagination_block.php';

			$wraper_before .= '<div ' . ( $attr['advanceId'] ? 'id="' . $attr['advanceId'] . '" ' : '' ) . ' class="ultp-post-grid-block wp-block-ultimate-post-' . $block_name . ' ultp-block-' . $attr['blockId'] . '' . ( $attr['align'] ? ' align' . $attr['align'] : '' ) . '' . ( $attr['className'] ? ' ' . $attr['className'] : '' ) . '">';
			$wraper_before .= '<div class="ultp-block-wrapper">';

			// Loading
			$wraper_before .= ultimate_post()->postx_loading();

			if ( $attr['headingShow'] || $attr['filterShow'] || $attr['paginationShow'] ) {
				$wraper_before .= '<div class="ultp-heading-filter">';
				$wraper_before .= '<div class="ultp-heading-filter-in">';

				// Heading
				include ULTP_PATH . 'blocks/template/heading.php';

				if ( $attr['filterShow'] || $attr['paginationShow'] ) {
					$wraper_before .= '<div class="ultp-filter-navigation">';

					// Filter
					if ( $attr['filterShow'] && $attr['queryType'] != 'posts' && $attr['queryType'] != 'customPosts' ) {
						include ULTP_PATH . 'blocks/template/filter.php';
					}

					// Navigation
					if ( $attr['paginationShow'] && ( $attr['paginationType'] == 'navigation' ) && ( $attr['navPosition'] == 'topRight' ) ) {
						include ULTP_PATH . 'blocks/template/navigation-before.php';
					}
					$wraper_before .= '</div>';
				}

				$wraper_before .= '</div>';
				$wraper_before .= '</div>';
			}

			$wraper_before .= '<div class="ultp-block-items-wrap ultp-block-row ultp-' . $attr['layout'] . ' ultp-block-content-' . $attr['columnFlip'] . '">';
			$idx            = 0;
			while ( $recent_posts->have_posts() ) :
				$recent_posts->the_post();

				$dcContent = array_fill( 0, $attr['dcSize'], '' );

				if ( ultimate_post()->is_dc_active( $attr ) ) {
					$dcContent = \ULTP\DCService::get_dc_content_for_block( $attr, $dcContent );
				}

				include ULTP_PATH . 'blocks/template/data.php';

				include ULTP_PATH . 'blocks/template/category.php';

				if ( $attr['queryUnique'] ) {
					$unique_ID[ $attr['queryUnique'] ][] = $post_id;
					$current_unique_posts[]              = $post_id;
				}

				$post_loop .= '<' . $attr['contentTag'] . ' class="ultp-block-item post-id-' . $post_id . ( $attr['titleAnimation'] ? ' ultp-animation-' . $attr['titleAnimation'] : '' ) . '">';
				$post_loop .= '<div class="ultp-block-content-wrap ultp-block-content-overlay">';

				if ( ( $post_thumb_id || $attr['fallbackEnable'] ) && $attr['showImage'] ) {
					$post_loop .= '<div class="ultp-block-image ultp-block-image-' . $attr['imgAnimation'] . ( $attr['imgOverlay'] ? ' ultp-block-image-overlay ultp-block-image-' . $attr['imgOverlayType'] : '' ) . '">';
					$post_loop .= '<a href="' . $titlelink . '" ' . ( $attr['openInTab'] ? 'target="_blank"' : '' ) . '>';
					// Post Image Size
					$imgSize = $idx == 0 ? $attr['imgCrop'] : $attr['imgCropSmall'];
					// Post Image Id
					$block_img_id = $post_thumb_id ? $post_thumb_id : ( $attr['fallbackEnable'] && isset( $attr['fallbackImg']['id'] ) ? $attr['fallbackImg']['id'] : '' );
					// Post Image
					if ( $post_thumb_id || ( $attr['fallbackEnable'] && $block_img_id ) ) {
						$post_loop .= ultimate_post()->get_image( $block_img_id, $imgSize, '', $title, $attr['imgSrcset'], $attr['imgLazy'] );
					} else {
						$video      = ultimate_post()->get_youtube_id( $post_video );
						$post_loop .= '<img  src="' . ( $video ? 'https://img.youtube.com/vi/' . $video . '/0.jpg' : $dummy_url ) . '" alt="dummy-img" />';
					}
					$post_loop .= '</a>';
					if ( ( $attr['catPosition'] != 'aboveTitle' ) && ( $idx == 0 || $attr['showSmallCat'] ) && $attr['catShow'] ) {
						$post_loop .= '<div class="ultp-category-img-grid">' . $category . '</div>';
					}
					$post_loop .= '</div>';
					if ( $post_video ) {
						include ULTP_PATH . 'blocks/template/video_icon.php';
					}
				} else {
					if ( $post_video ) {
						include ULTP_PATH . 'blocks/template/video_icon.php';
					}
					$post_loop .= '<div class="ultp-block-image ultp-block-empty-image"></div>';
				}
				$post_loop .= '<div class="ultp-block-content ultp-block-content-' . $attr['overlayContentPosition'] . '">';
				$post_loop .= '<div class="ultp-block-content-inner">';

				$post_loop .= $dcContent[7];

				// Category
				if ( ( $attr['catPosition'] == 'aboveTitle' ) && ( $idx == 0 || $attr['showSmallCat'] ) && $attr['catShow'] ) {
					$post_loop .= $category;
				}

				$post_loop .= $dcContent[6];

				// Title
				if ( $title && $attr['titleShow'] && $attr['titlePosition'] == 1 ) {
					include ULTP_PATH . 'blocks/template/title.php';
				}

				$post_loop .= $dcContent[5];

				// Meta
				if ( $attr['metaPosition'] == 'top' ) {
					include ULTP_PATH . 'blocks/template/meta.php';
				}

				$post_loop .= $dcContent[4];

				// Title
				if ( $title && $attr['titleShow'] && $attr['titlePosition'] == 0 ) {
					include ULTP_PATH . 'blocks/template/title.php';
				}

				$post_loop .= $dcContent[3];

				// Excerpt
				if ( ( $idx == 0 || $attr['showSmallExcerpt'] ) && $attr['excerptShow'] ) {
					$post_loop .= '<div class="ultp-block-excerpt">' . ultimate_post()->get_excerpt( $post_id, $attr['showSeoMeta'], $attr['showFullExcerpt'], $attr['excerptLimit'] ) . '</div>';
				}

				$post_loop .= $dcContent[2];

				// Read More
				if ( $attr['readMore'] && ( $idx == 0 || $attr['showSmallBtn'] ) ) {
					$post_loop .= '<div class="ultp-block-readmore"><a aria-label="' . $title . '" href="' . $titlelink . '" ' . ( $attr['openInTab'] ? 'target="_blank"' : '' ) . '>' . ( $attr['readMoreText'] ? $attr['readMoreText'] : esc_html__( 'Read More', 'ultimate-post' ) ) . ultimate_post()->get_svg_icon( $attr['readMoreIcon'] ) . '</a></div>';
				}

				$post_loop .= $dcContent[1];

				// Meta
				if ( $attr['metaPosition'] == 'bottom' ) {
					include ULTP_PATH . 'blocks/template/meta.php';
				}

				$post_loop .= $dcContent[0];

				$post_loop .= '</div>';
				$post_loop .= '</div>';
				$post_loop .= '</div>';
				if ( $post_video && $attr['enablePopup'] ) {
					include ULTP_PATH . 'blocks/template/video_popup.php';
				}
				$post_loop .= '</' . $attr['contentTag'] . '>';
				++$idx;
			endwhile;
			if ( $attr['queryUnique'] ) {
				$post_loop .= "<span style='display: none;' class='ultp-current-unique-posts' data-ultp-unique-ids= " . wp_json_encode( $unique_ID ) . ' data-current-unique-posts= ' . wp_json_encode( $current_unique_posts ) . '> </span>';
			}

			// if ( $attr['advPaginationEnable'] && ($attr['paginationType'] == 'loadMore')) {
			// $wraper_after .= '<span class="ultp-loadmore-insert-before"></span>';
			// }

			$wraper_after .= '</div>'; // ultp-block-items-wrap

			// Navigation
			if ( $attr['paginationShow'] && ( $attr['paginationType'] == 'navigation' ) && ( $attr['navPosition'] != 'topRight' ) ) {
				include ULTP_PATH . 'blocks/template/navigation-after.php';
			}

			$wraper_after .= '</div>';
			$wraper_after .= $pagi_block_html;
			$wraper_after .= '</div>';

			wp_reset_query();
		} else {
			$wraper_before .= ultimate_post()->get_no_result_found_html( $attr['notFoundMessage'] );
		}

		return $noAjax ? $post_loop : $wraper_before . $post_loop . $wraper_after;
	}
}

```
