PluginProbe
YAHMAN Add-ons / trunk
YAHMAN Add-ons vtrunk
0.9.31 trunk 0.3.2 0.3.3 0.3.6 0.3.7 0.3.8 0.3.9 0.4.0 0.4.1 0.4.2 0.4.3 0.4.4 0.4.5 0.4.6 0.4.7 0.4.8 0.4.9 0.5.0 0.5.1 0.5.2 0.5.3 0.5.4 0.5.5 0.5.6 All 89 releases
yahman-add-ons / yahman-add-ons.php

yahman-add-ons.php in YAHMAN Add-ons trunk, at yahman-add-ons.php

47 lines 1.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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