simple-author-box.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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.1
  7. * Author: Macho Themes
  8. * Author URI: https://www.machothemes.com/
  9. * License: GPLv3
  10. */
  11. /* Copyright 2018 Machothemes (email : office [at] machothemes [dot] com)
  12. THIS PROGRAM IS FREE SOFTWARE; YOU CAN REDISTRIBUTE IT AND/OR MODIFY
  13. IT UNDER THE TERMS OF THE GNU GENERAL PUBLIC LICENSE AS PUBLISHED BY
  14. THE FREE SOFTWARE FOUNDATION; EITHER VERSION 2 OF THE LICENSE, OR
  15. (AT YOUR OPTION) ANY LATER VERSION.
  16. THIS PROGRAM IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
  17. BUT WITHOUT ANY WARRANTY; WITHOUT EVEN THE IMPLIED WARRANTY OF
  18. MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. SEE THE
  19. GNU GENERAL PUBLIC LICENSE FOR MORE DETAILS.
  20. YOU SHOULD HAVE RECEIVED A COPY OF THE GNU GENERAL PUBLIC LICENSE
  21. ALONG WITH THIS PROGRAM; IF NOT, WRITE TO THE FREE SOFTWARE
  22. FOUNDATION, INC., 51 FRANKLIN ST, FIFTH FLOOR, BOSTON, MA 02110-1301 USA
  23. */
  24. define( 'SIMPLE_AUTHOR_BOX_PATH', plugin_dir_path( __FILE__ ) );
  25. define( 'SIMPLE_AUTHOR_BOX_ASSETS', plugins_url( '/assets/', __FILE__ ) );
  26. define( 'SIMPLE_AUTHOR_BOX_SLUG', plugin_basename( __FILE__ ) );
  27. define( 'SIMPLE_AUTHOR_BOX_VERSION', '2.1.1' );
  28. define( 'SIMPLE_AUTHOR_SCRIPT_DEBUG', false );
  29. require_once SIMPLE_AUTHOR_BOX_PATH . 'inc/class-simple-author-box.php';
  30. Simple_Author_Box::get_instance();
  31. // load the uninstall feedback class
  32. require_once 'inc/feedback/class-epsilon-feedback-sab.php';
  33. new Epsilon_Feedback_SAB( __FILE__ );