Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93
/home/sportsfe.../httpdocs/wp-conte.../plugins/redux-fr...
File: redux-framework.php
<?php // phpcs:ignore Squiz.Commenting.FileComment.Missing
[0] Fix | Delete
/**
[1] Fix | Delete
* Redux, a simple, truly extensible and fully responsive option framework
[2] Fix | Delete
* for WordPress themes and plugins. Developed with WordPress coding
[3] Fix | Delete
* standards and PHP best practices in mind.
[4] Fix | Delete
*
[5] Fix | Delete
* Plugin Name: Redux Framework
[6] Fix | Delete
* Plugin URI: http://wordpress.org/plugins/redux-framework
[7] Fix | Delete
* GitHub URI: reduxframework/redux-framework
[8] Fix | Delete
* Description: Build better sites in WordPress fast!
[9] Fix | Delete
* Version: 4.4.18
[10] Fix | Delete
* Requires at least: 5.0
[11] Fix | Delete
* Requires PHP: 7.1
[12] Fix | Delete
* Author: Team Redux
[13] Fix | Delete
* Author URI: https://redux.io
[14] Fix | Delete
* License: GPLv3 or later
[15] Fix | Delete
* License URI: http://www.gnu.org/licenses/gpl-3.0.txt
[16] Fix | Delete
* Text Domain: redux-framework
[17] Fix | Delete
* Provides: ReduxFramework
[18] Fix | Delete
*
[19] Fix | Delete
* @package ReduxFramework
[20] Fix | Delete
* @author Team Redux
[21] Fix | Delete
* @license GNU General Public License, version 3
[22] Fix | Delete
* @copyright 2012-2024 Redux.io
[23] Fix | Delete
*/
[24] Fix | Delete
[25] Fix | Delete
// Exit if accessed directly.
[26] Fix | Delete
defined( 'ABSPATH' ) || exit;
[27] Fix | Delete
[28] Fix | Delete
if ( ! defined( 'REDUX_PLUGIN_FILE' ) ) {
[29] Fix | Delete
define( 'REDUX_PLUGIN_FILE', __FILE__ );
[30] Fix | Delete
}
[31] Fix | Delete
[32] Fix | Delete
// Require the main plugin class.
[33] Fix | Delete
require_once plugin_dir_path( __FILE__ ) . 'class-redux-framework-plugin.php';
[34] Fix | Delete
[35] Fix | Delete
// Register hooks that are fired when the plugin is activated and deactivated, respectively.
[36] Fix | Delete
register_activation_hook( __FILE__, array( 'Redux_Framework_Plugin', 'activate' ) );
[37] Fix | Delete
register_deactivation_hook( __FILE__, array( 'Redux_Framework_Plugin', 'deactivate' ) );
[38] Fix | Delete
[39] Fix | Delete
// Get plugin instance.
[40] Fix | Delete
Redux_Framework_Plugin::instance();
[41] Fix | Delete
[42] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function