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/clone/wp-conte.../plugins/meks-eas.../inc
File: template-functions.php
<?php
[0] Fix | Delete
[1] Fix | Delete
add_shortcode( 'meks_easy_ads_blocker_message', 'meks_shortcode_easy_ads' );
[2] Fix | Delete
[3] Fix | Delete
function meks_shortcode_easy_ads( $atts ) {
[4] Fix | Delete
[5] Fix | Delete
$atts = shortcode_atts(
[6] Fix | Delete
array(
[7] Fix | Delete
'title' => __( 'AdBlocker Message', 'meks-easy-ads-widget' ),
[8] Fix | Delete
'message' => __( 'Our website is made possible by displaying online advertisements to our visitors. Please consider supporting us by disabling your ad blocker.', 'meks-easy-ads-widget' ),
[9] Fix | Delete
),
[10] Fix | Delete
$atts
[11] Fix | Delete
);
[12] Fix | Delete
[13] Fix | Delete
$args = array(
[14] Fix | Delete
'before_title' => '<h4 class="widget-title">',
[15] Fix | Delete
'after_title' => '</h4>',
[16] Fix | Delete
);
[17] Fix | Delete
[18] Fix | Delete
ob_start();
[19] Fix | Delete
[20] Fix | Delete
the_widget( 'MKS_AdsBlocker_Widget', $atts, $args );
[21] Fix | Delete
[22] Fix | Delete
$output = ob_get_contents();
[23] Fix | Delete
ob_end_clean();
[24] Fix | Delete
[25] Fix | Delete
return $output;
[26] Fix | Delete
[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