get_template_part(); } /** * Type-specific sanitization for the hook-select field. * * @since 2.2.5 * * @param mixed $value The raw submitted value. * * @return mixed The sanitized value. */ protected function sanitize_value( $value ) { if ( ! is_array( $value ) ) { return array(); } return array( 'hook_name' => sanitize_key( $value['hook_name'] ?? '' ), 'hook_priority' => absint( $value['hook_priority'] ?? 10 ), ); } }