PluginProbe
JobWP – Job Board Plugin for WordPress | Job Listings, Career Page & Applications / 1.4
JobWP – Job Board Plugin for WordPress | Job Listings, Career Page & Applications v1.4
2.5.0 trunk 1.0 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9 2.0 2.1 2.2 2.3 2.3.2 2.3.3 2.3.4 2.3.5 2.3.6 2.3.7 2.3.8 2.3.9 2.4.0 All 33 releases
jobwp / jobwp.php

jobwp.php in JobWP – Job Board Plugin for WordPress | Job Listings, Career Page & Applications 1.4, at jobwp.php

33 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: JobWP
4 * Plugin URI: https://wordpress.org/plugins/jobwp/
5 * Description: Best Recruitment Plugin for WordPress to display job listing in a career page.
6 * Version: 1.4
7 * Author: HM Plugin
8 * Author URI: https://hmplugin.com
9 * Requires at least: 5.2
10 * Requires PHP: 7.2
11 * Tested up to: 6.0
12 * Text Domain: jobwp
13 * Domain Path: /languages/
14 * License: GPL-2.0+
15 * License URI: http://www.gnu.org/licenses/gpl-2.0.txt
16 */
17
18 if ( ! defined( 'ABSPATH' ) ) {
19 exit;
20 }
21
22 define('JOBWP_PATH', plugin_dir_path(__FILE__));
23 define('JOBWP_ASSETS', plugins_url('/assets/', __FILE__));
24 define('JOBWP_SLUG', plugin_basename(__FILE__));
25 define('JOBWP_PRFX', 'jobwp_');
26 define('JOBWP_CLS_PRFX', 'cls-jobwp-');
27 define('JOBWP_TXT_DOMAIN', 'jobwp');
28 define('JOBWP_VERSION', '1.4');
29
30 require_once JOBWP_PATH . 'inc/' . JOBWP_CLS_PRFX . 'master.php';
31 $jobwp = new JobWp_Master();
32 register_activation_hook(__FILE__, array($jobwp, JOBWP_PRFX . 'create_tables'));
33 $jobwp->jobwp_run();