# ultimate-post/2.2.5/addons/templates/Shortcode.php

Post Grid Gutenberg Blocks – PostX, version 2.2.5. 31 lines.

- Page: https://pluginprobe.com/plugins/ultimate-post/2.2.5/code/addons/templates/Shortcode.php
- Raw: https://pluginprobe.com/plugins/ultimate-post/2.2.5/raw/addons/templates/Shortcode.php
- Modified: 2021-03-02T11:28:10+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/2.2.5/code/addons/templates/Shortcode.php#L10-L20`.

```php
<?php
namespace ULTP;

defined('ABSPATH') || exit;

class Shortcode {
    public function __construct(){
        add_shortcode('gutenberg_post_blocks', array($this, 'shortcode_callback'));
    }

    // Shortcode Callback
    function shortcode_callback( $atts = array(), $content = null ) {
        extract(shortcode_atts(array(
         'id' => ''
        ), $atts));

        $content = '';
        if($id){
            $init = new \ULTP\ULTP_Initialization();
            $init->register_scripts_common();
            ultimate_post()->set_css_style($id);
            $content_post = get_post($id);
            $content = $content_post->post_content;
            $content = apply_filters('the_content', $content);
            $content = str_replace(']]>', ']]&gt;', $content);
            return '<div class="ultp-shortcode" data-postid="'.$id.'">' . $content . '</div>';
        }
        return '';
    }
    
}
```
