| Server IP : 118.139.160.155 / Your IP : 216.73.217.153 Web Server : Apache System : Linux sg2plmcpnl504228.prod.sin2.secureserver.net 4.18.0-553.124.4.lve.el8.x86_64 #1 SMP Fri May 15 13:02:13 UTC 2026 x86_64 User : twll3xqyaqrh ( 9725459) PHP Version : 5.6.40 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/twll3xqyaqrh/public_html/Site WP/wp-content/plugins/guest-author/ |
Upload File : |
<?php
/*
Plugin Name: Guest Author
Plugin URI: https://wordpress.org/plugins/guest-author/
Description: The only guest author plugin you need.
Version: 2.2
Author: WebFactory Ltd
Author URI: https://www.webfactoryltd.com/
License: GNU General Public License v3.0
Text Domain: guest-author
*/
if ( !defined('ABSPATH') )
die('-1');
define('BS_GUEST_AUTHOR_VERSION', '2.2');
/**
* Loading Guest Author class
*/
$root_dir = is_dir( plugin_dir_path(__FILE__) . 'src') ? 'src/' : '';
require plugin_dir_path(__FILE__) . $root_dir . 'guest-author.php';
require plugin_dir_path(__FILE__) . $root_dir . 'settings.php';
require plugin_dir_path(__FILE__) . $root_dir . 'functions.php';
function register_BS_Guest_Author_plugin() {
new BS_Guest_Author();
new BS_Guest_Author_Settings();
}
add_action('init', 'register_BS_Guest_Author_plugin');