[ 'add_meta_box', 9 ], ]; } /** * Add the field to the WP Rocket metabox on the post edit page. * * @param string[] $fields Metaboxes fields. * * @return string[] */ public function add_meta_box( array $fields ) { $fields['cdn'] = __( 'CDN', 'rocket' ); return $fields; } }