嗯,这取决于上下文。通常,我们不需要保护仅在前端显示的数据。But the best practice is, always escape or validate data, no matter where they comes from. 就你的情况来说,你可以这样做-
<label><?php echo esc_html( $data[\'title\'] ); ?></label>
<input type="text" value=" <?php echo esc_attr( $data[\'value\'] ); ?> " >
希望以上内容有所帮助。