| 1 |
<?php |
| 2 |
/** |
| 3 |
* Plugin Name: BugHerd |
| 4 |
* Plugin URI: https://bugherd.com |
| 5 |
* Description: BugHerd is the visual feedback tool for websites. For help, go to <a href="http://support.bugherd.com">support.bugherd.com</a> |
| 6 |
* Author: BugHerd |
| 7 |
* Author URI: https://bugherd.com |
| 8 |
* Text Domain: bugherd |
| 9 |
* Version: 1.0.6 |
| 10 |
* License: GPLv3 or later |
| 11 |
* |
| 12 |
* @package BugHerd |
| 13 |
*/ |
| 14 |
|
| 15 |
// If this file is called directly, abort. |
| 16 |
if ( ! defined( 'WPINC' ) ) { |
| 17 |
die; |
| 18 |
} |
| 19 |
|
| 20 |
/** |
| 21 |
* Bootstrap |
| 22 |
* |
| 23 |
* @since 1.0.0 |
| 24 |
*/ |
| 25 |
require_once plugin_dir_path( __FILE__ ) . 'includes/settings.php'; |
| 26 |
require_once plugin_dir_path( __FILE__ ) . 'includes/scripts.php'; |
| 27 |
|