redux_id, $this );
}
public function label() {
// The label has already been sanitized in the Fields class, no need to re-sanitize it.
echo $this->label;
}
public function description() {
if ( ! empty( $this->description ) ) {
// The description has already been sanitized in the Fields class, no need to re-sanitize it.
echo '' . $this->description . '';
}
}
public function title() {
echo '';
$this->label();
$this->description();
echo '';
}
}
}