# ultimate-post/5.0.23/addons/wpbakery/init.php

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

- Page: https://pluginprobe.com/plugins/ultimate-post/5.0.23/code/addons/wpbakery/init.php
- Raw: https://pluginprobe.com/plugins/ultimate-post/5.0.23/raw/addons/wpbakery/init.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/wpbakery/init.php#L10-L20`.

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

function ultp_wpbakery_builder() {
	if ( ultimate_post()->get_setting( 'ultp_wpbakery' ) == 'true' ) {
		if ( defined( 'WPB_VC_VERSION' ) ) {
			require_once ULTP_PATH . '/addons/wpbakery/wpbakery.php';
		}
	}
}

add_action( 'init', 'ultp_wpbakery_builder' );

```
