PluginProbe
Advanced Views – Display Framework for Gutenberg & Elementor / 3.9.3
Advanced Views – Display Framework for Gutenberg & Elementor v3.9.3
3.9.4 3.9.5 3.9.6 3.9.3 3.9.2 3.9.1 3.9.0 3.8.11 3.8.9 1.4.10 1.5.0 1.5.10 1.6.0 1.6.10 1.6.16 1.7.0 1.7.10 1.7.11 1.7.12 1.7.13 1.7.14 1.7.15 1.7.16 1.7.19 1.7.20 All 129 releases
acf-views / acf-views.php

acf-views.php in Advanced Views – Display Framework for Gutenberg & Elementor 3.9.3, at acf-views.php

31 lines 807 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: Advanced Views Lite
4 * Plugin URI: https://advanced-views.com/
5 * Description: Display content with full control over selection and layout. Lightweight and compatible with any theme or page builder.
6 * Version: 3.9.3
7 * Author: WPLake
8 * Author URI: https://advanced-views.com/
9 * Text Domain: acf-views
10 * Domain Path: /lang
11 */
12
13 namespace Org\Wplake\Advanced_Views;
14
15 defined( 'ABSPATH' ) || exit;
16
17 use Org\Wplake\Advanced_Views\Plugin\Loaders\Lite\Lite_Plugin_Loader;
18 use Org\Wplake\Advanced_Views\Plugin\Plugin;
19
20 ( function (): void {
21 // omit loading if the Pro version is already loaded.
22 if ( class_exists( Plugin::class ) ) {
23 return;
24 }
25
26 require_once __DIR__ . '/src/autoloader.php';
27
28 $plugin_loader = new Lite_Plugin_Loader( __FILE__ );
29 $plugin_loader->load();
30 } )();
31