PluginProbe
HivePress – Business Directory, Listings & Classified Ads Plugin / 1.7.31
HivePress – Business Directory, Listings & Classified Ads Plugin v1.7.31
1.7.31 1.7.30 1.7.29 1.7.28 1.7.27 1.7.26 1.7.25 1.7.24 1.6.12 1.6.13 1.6.14 1.6.15 1.6.16 1.6.17 1.6.18 1.6.2 1.6.3 1.6.4 1.6.5 1.6.6 1.6.7 1.6.8 1.6.9 1.7.0 1.7.1 All 98 releases
hivepress / hivepress.php

hivepress.php in HivePress – Business Directory, Listings & Classified Ads Plugin 1.7.31, at hivepress.php

39 lines 756 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: HivePress
4 * Plugin URI: https://hivepress.io/
5 * Description: Multipurpose directory, listing & classifieds plugin.
6 * Requires at least: 5.0
7 * Requires PHP: 7.4
8 * Version: 1.7.31
9 * Author: HivePress
10 * Author URI: https://hivepress.io/
11 * Text Domain: hivepress
12 * Domain Path: /languages/
13 *
14 * @package HivePress
15 */
16
17 // Exit if accessed directly.
18 defined( 'ABSPATH' ) || exit;
19
20 // Define the core file.
21 if ( ! defined( 'HP_FILE' ) ) {
22 define( 'HP_FILE', __FILE__ );
23 }
24
25 // Include the core class.
26 require_once __DIR__ . '/includes/class-core.php';
27
28 /**
29 * Returns HivePress core instance.
30 *
31 * @return HivePress\Core
32 */
33 function hivepress() {
34 return HivePress\Core::instance();
35 }
36
37 // Initialize HivePress.
38 hivepress();
39