File "public-helper-function.php"

Full Path: /home/timepamn/dailynetworth.org/wp-content/plugins/easy-table-of-contents/includes/public-helper-function.php
File size: 786 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
if ( ! defined( 'ABSPATH' ) ) {
    exit;
}
/*
 * Read the contents of a file using the WordPress filesystem API.
 * Since: 2.0.68
 * @param string $file_path The path to the file.
 * @return string|false The file contents or false on failure.
 */
function eztoc_read_file_contents($file_path) {
    global $wp_filesystem;

    // Initialize the WordPress filesystem, no more using file_get_contents function
    if (empty($wp_filesystem)) {
        require_once ABSPATH . 'wp-admin/includes/file.php';
        WP_Filesystem();
    }

    // Check if the file exists and is readable
    if ($wp_filesystem->exists($file_path) && $wp_filesystem->is_readable($file_path)) {
        return $wp_filesystem->get_contents($file_path);
    }

    return false;
}