PHP Classes

File: nolimitbuzz.php

Recommend this page to a friend!
  Classes of Adeleye Ayodeji   Nolimitbuzz WP Plugin   nolimitbuzz.php   Download  
File: nolimitbuzz.php
Role: Configuration script
Content type: text/plain
Description: Plugin configuration script
Class: Nolimitbuzz WP Plugin
Manage and show team members on a WordPress site
Author: By
Last change:
Date: Yesterday
Size: 806 bytes
 

Contents

Class file image Download
<?php

/**
 * Plugin Name: Nolimitbuzz Core
 * Plugin URI: https://nolimitbuzz.com
 * Author: Adeleye Ayodeji
 * Author URI: https://adeleyeayodeji.com
 * Description: This plugin extends the functionality of the Nolimitbuzz theme.
 * Version: 0.1.0
 * License: GPL-3.0+
 * License URL: http://www.gnu.org/licenses/gpl-3.0.txt
 * text-domain: nolimitbuzz
 */

//check for security
if (!defined('ABSPATH')) {
    exit;
}

//define constants
define('NO_LIMIT_BUZZ_PLUGIN_DIR', plugin_dir_path(__FILE__));
define('NO_LIMIT_BUZZ_PLUGIN_URL', plugin_dir_url(__FILE__));
//version
define('NO_LIMIT_BUZZ_PLUGIN_VERSION', time());

//load the plugin
require_once NO_LIMIT_BUZZ_PLUGIN_DIR . 'includes/nolimitbuzz.class.php';

//initialize the plugin
Nolimitbuzz\Includes\Nolimitbuzz::get_instance();