# ultimate-post/5.0.41/addons/elementor/init.php

Post Grid Gutenberg Blocks – PostX, version 5.0.41. 13 lines.

- Page: https://pluginprobe.com/plugins/ultimate-post/5.0.41/code/addons/elementor/init.php
- Raw: https://pluginprobe.com/plugins/ultimate-post/5.0.41/raw/addons/elementor/init.php
- Modified: 2026-09-16T12:17:26+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.41/code/addons/elementor/init.php#L10-L20`.

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

add_action( 'plugins_loaded', 'ultp_elementor_init' );
function ultp_elementor_init() {
	if ( ultimate_post()->get_setting( 'ultp_elementor' ) == 'true' ) {
		if ( did_action( 'elementor/loaded' ) ) {
			require_once ULTP_PATH . '/addons/elementor/Elementor.php';
			Elementor_ULTP_Extension::instance();
		}
	}
}

```
