PluginProbe ʕ •ᴥ•ʔ
Simple Author Box / 2.1.2
Simple Author Box v2.1.2
2.61 trunk 1.0 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.9 2.0 2.0.1 2.0.2 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 2.1.0 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.2.0 2.2.1 2.2.2 2.3.0 2.3.1 2.3.11 2.3.12 2.3.15 2.3.16 2.3.2 2.3.20 2.3.21 2.3.22 2.4 2.41 2.42 2.45 2.46 2.47 2.48 2.49 2.50 2.51 2.52 2.54 2.55 2.56 2.57 2.59 2.60
simple-author-box / simple-author-box.php
simple-author-box Last commit date
assets 7 years ago inc 7 years ago template 7 years ago readme.txt 7 years ago simple-author-box.php 7 years ago uninstall.php 7 years ago
simple-author-box.php
43 lines
1 <?php
2 /**
3 * Plugin Name: Simple Author Box
4 * Plugin URI: http://wordpress.org/plugins/simple-author-box/
5 * Description: Adds a responsive author box with social icons on your posts.
6 * Version: 2.1.2
7 * Author: Macho Themes
8 * Author URI: https://www.machothemes.com/
9 * License: GPLv3
10 */
11
12 /* Copyright 2018 Machothemes (email : office [at] machothemes [dot] com)
13
14 THIS PROGRAM IS FREE SOFTWARE; YOU CAN REDISTRIBUTE IT AND/OR MODIFY
15 IT UNDER THE TERMS OF THE GNU GENERAL PUBLIC LICENSE AS PUBLISHED BY
16 THE FREE SOFTWARE FOUNDATION; EITHER VERSION 2 OF THE LICENSE, OR
17 (AT YOUR OPTION) ANY LATER VERSION.
18
19 THIS PROGRAM IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
20 BUT WITHOUT ANY WARRANTY; WITHOUT EVEN THE IMPLIED WARRANTY OF
21 MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. SEE THE
22 GNU GENERAL PUBLIC LICENSE FOR MORE DETAILS.
23
24 YOU SHOULD HAVE RECEIVED A COPY OF THE GNU GENERAL PUBLIC LICENSE
25 ALONG WITH THIS PROGRAM; IF NOT, WRITE TO THE FREE SOFTWARE
26 FOUNDATION, INC., 51 FRANKLIN ST, FIFTH FLOOR, BOSTON, MA 02110-1301 USA
27
28 */
29
30 define( 'SIMPLE_AUTHOR_BOX_PATH', plugin_dir_path( __FILE__ ) );
31 define( 'SIMPLE_AUTHOR_BOX_ASSETS', plugins_url( '/assets/', __FILE__ ) );
32 define( 'SIMPLE_AUTHOR_BOX_SLUG', plugin_basename( __FILE__ ) );
33 define( 'SIMPLE_AUTHOR_BOX_VERSION', '2.1.2' );
34 define( 'SIMPLE_AUTHOR_SCRIPT_DEBUG', false );
35
36
37 require_once SIMPLE_AUTHOR_BOX_PATH . 'inc/class-simple-author-box.php';
38 Simple_Author_Box::get_instance();
39
40 // load the uninstall feedback class
41 require_once 'inc/feedback/class-epsilon-feedback-sab.php';
42 new Epsilon_Feedback_SAB( __FILE__ );
43