| 1 |
<?php |
| 2 |
/* |
| 3 |
Plugin Name: YAHMAN Add-ons |
| 4 |
Plugin URI: https://dev.back2nature.jp/en/yahman-add-ons/ |
| 5 |
Description: YAHMAN Add-ons has Multiple functions.Page views,Google Adsense,Analytics,Social,Profile,Table of contents,Related Posts,sitemap,SEO,JSON-LD structured data,Open Graph protocol(OGP),Blog card,Twitter timeline,Facebook timeline,Carousel Slider etc... |
| 6 |
Version: 0.9.31 |
| 7 |
Author: YAHMAN |
| 8 |
Author URI: https://back2nature.jp/ |
| 9 |
License: GNU General Public License v3 or later |
| 10 |
Text Domain: yahman-add-ons |
| 11 |
Domain Path: /languages/ |
| 12 |
*/ |
| 13 |
|
| 14 |
/* |
| 15 |
YAHMAN Add-ons |
| 16 |
Copyright (C) 2018 YAHMAN |
| 17 |
|
| 18 |
This program is free software: you can redistribute it and/or modify |
| 19 |
it under the terms of the GNU General Public License as published by |
| 20 |
the Free Software Foundation, either version 3 of the License, or |
| 21 |
(at your option) any later version. |
| 22 |
|
| 23 |
This program is distributed in the hope that it will be useful, |
| 24 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 25 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 26 |
GNU General Public License for more details. |
| 27 |
|
| 28 |
You should have received a copy of the GNU General Public License |
| 29 |
along with this program. If not, see <https://www.gnu.org/licenses/>. |
| 30 |
*/ |
| 31 |
defined( 'ABSPATH' ) || exit; |
| 32 |
|
| 33 |
$data = get_file_data( __FILE__, array( 'Version' ) ); |
| 34 |
|
| 35 |
define( 'YAHMAN_ADDONS_VERSION', $data[0] ); |
| 36 |
define( 'YAHMAN_ADDONS_DIR', trailingslashit( plugin_dir_path( __FILE__ ) ) ); |
| 37 |
define( 'YAHMAN_ADDONS_URI', trailingslashit( esc_url( plugin_dir_url( __FILE__ ) ) ) ); |
| 38 |
define( 'YAHMAN_ADDONS_PLUGIN_FILE', __FILE__ ); |
| 39 |
|
| 40 |
|
| 41 |
|
| 42 |
|
| 43 |
|
| 44 |
|
| 45 |
require_once YAHMAN_ADDONS_DIR . 'inc/action_plugins_loaded.php'; |
| 46 |
|
| 47 |
|