| 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.2 |
| 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 |
|