# ultimate-post/5.0.23/addons/elementor/Elementor.php

Post Grid Gutenberg Blocks – PostX, version 5.0.23. 57 lines.

- Page: https://pluginprobe.com/plugins/ultimate-post/5.0.23/code/addons/elementor/Elementor.php
- Raw: https://pluginprobe.com/plugins/ultimate-post/5.0.23/raw/addons/elementor/Elementor.php
- Modified: 2026-06-04T11:21:00+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.23/code/addons/elementor/Elementor.php#L10-L20`.

```php
<?php
defined( 'ABSPATH' ) || exit;

final class Elementor_ULTP_Extension {

	private static $_instance = null;

	public static function instance() {
		if ( is_null( self::$_instance ) ) {
			self::$_instance = new self();
		}
		return self::$_instance;
	}

	public function __construct() {
		$this->init();
	}

	public function init() {
		add_action( 'elementor/widgets/register', array( $this, 'register_widgets' ) );
		add_action( 'elementor/frontend/before_enqueue_scripts', array( $this, 'widget_scripts' ) ); // after_register_scripts before_enqueue_scripts conflct with short code
		add_action( 'elementor/frontend/after_enqueue_styles', array( $this, 'widget_styles' ) );
	}

	public function widget_styles() {
		wp_register_style( 'ultp-style', ULTP_URL . 'assets/css/style.min.css', array(), ultimate_post()->get_setting( 'save_version' ) );
		wp_enqueue_style( 'ultp-style' );
	}

	public function widget_scripts() {
		wp_register_script( 'ultp-script', ULTP_URL . 'assets/js/ultp.min.js', array( 'jquery', 'wp-api-fetch' ), ultimate_post()->get_setting( 'save_version' ), true );
		wp_enqueue_script( 'ultp-script' );
		wp_localize_script(
			'ultp-script',
			'ultp_data_frontend',
			array(
				'url'             => ULTP_URL,
				'active'          => ultimate_post()->is_lc_active(),
				'ultpSavedDLMode' => ultimate_post()->get_dl_mode(),
				'ajax'            => admin_url( 'admin-ajax.php' ),
				'security'        => wp_create_nonce( 'ultp-nonce' ),
				'home_url'        => home_url(),
				'dark_logo'       => get_option( 'ultp_site_dark_logo', false ),
			)
		);
	}

	public function includes() {
		require_once ULTP_PATH . 'addons/elementor/Elementor_Widget.php';
	}

	public function register_widgets() {
		$this->includes();
		\Elementor\Plugin::instance()->widgets_manager->register( new \Gutenberg_Post_Blocks_Widget() );
	}
}

```
