File "grid-post.php"

Full Path: /home/naijiwfb/sabisentinel.com/wp-content/plugins/smartmag-core/blocks/loop-posts/grid-post.php
File size: 351 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Bunyad\Blocks\LoopPosts;

/**
 * Grid Loop Post Class
 */
class GridPost extends BasePost
{
	public $id = 'grid';

	/**
	 * Default props for this post
	 * 
	 * @return array
	 */
	public function get_default_props()
	{
		$props = parent::get_default_props();

		return array_replace($props, [
			'image'  => 'bunyad-grid',
		]);
	}
}