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 |