27 lines
740 B
PHP
27 lines
740 B
PHP
<?php
|
|
/**
|
|
* Plugin Name: ProfilePress
|
|
* Plugin URI: https://profilepress.com
|
|
* Description: The modern WordPress membership and user profile plugin.
|
|
* Version: 4.16.15
|
|
* Author: ProfilePress Membership Team
|
|
* Author URI: https://profilepress.com
|
|
* Text Domain: wp-user-avatar
|
|
* Domain Path: /languages
|
|
*/
|
|
|
|
defined('ABSPATH') or die("No script kiddies please!");
|
|
|
|
define('PROFILEPRESS_SYSTEM_FILE_PATH', __FILE__);
|
|
define('PPRESS_VERSION_NUMBER', '4.16.15');
|
|
|
|
if ( ! defined('PPRESS_STRIPE_API_VERSION')) {
|
|
define('PPRESS_STRIPE_API_VERSION', '2024-06-20');
|
|
}
|
|
|
|
require __DIR__ . '/autoloader.php';
|
|
require __DIR__ . '/third-party/vendor/autoload.php';
|
|
|
|
do_action('ppress_core_pre_init');
|
|
|
|
ProfilePress\Core\Base::get_instance(); |