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.../public_h.../wp-conte.../plugins/themify-.../includes/plugin-c...
File: wpjobmanager.php
<?php
[0] Fix | Delete
/**
[1] Fix | Delete
* Builder Plugin Compatibility Code
[2] Fix | Delete
*
[3] Fix | Delete
* @package Themify_Builder
[4] Fix | Delete
* @subpackage Themify_Builder/classes
[5] Fix | Delete
*/
[6] Fix | Delete
[7] Fix | Delete
/**
[8] Fix | Delete
* @link https://wordpress.org/plugins/wp-job-manager/
[9] Fix | Delete
*/
[10] Fix | Delete
class Themify_Builder_Plugin_Compat_WPJobManager {
[11] Fix | Delete
[12] Fix | Delete
static function init() {
[13] Fix | Delete
add_filter( 'themify_builder_query_post', array( __CLASS__, 'themify_builder_query_post' ) );
[14] Fix | Delete
}
[15] Fix | Delete
[16] Fix | Delete
/**
[17] Fix | Delete
* Fix missing Job Types taxonomy selector
[18] Fix | Delete
*
[19] Fix | Delete
* @access public
[20] Fix | Delete
*/
[21] Fix | Delete
public static function themify_builder_query_post(array $types ):array {
[22] Fix | Delete
$types['job_listing']['options'] = array(
[23] Fix | Delete
'job_listing_type' => array( 'name' => __( 'Job Types', 'themify' ) ),
[24] Fix | Delete
);
[25] Fix | Delete
[26] Fix | Delete
return $types;
[27] Fix | Delete
}
[28] Fix | Delete
}
[29] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function