: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
* @package AdvancedAds\Framework\Form
* @author Advanced Ads <info@wpadvancedads.com>
namespace AdvancedAds\Framework\Form;
defined( 'ABSPATH' ) || exit;
class Field_Textarea extends Field {
public function render() {
<textarea class="<?php echo sanitize_html_class( $this->get( 'class' ) ); ?>" name="<?php echo esc_attr( $this->get( 'name' ) ); ?>" id="<?php echo esc_attr( $this->get( 'id' ) ); ?>" cols="<?php echo esc_attr( $this->get( 'cols' ) ); ?>" rows="<?php echo esc_attr( $this->get( 'rows' ) ); ?>">
<?php echo esc_textarea( $this->get( 'value' ) ); ?>