diff --git a/xmlsitemap_node/xmlsitemap_node.module b/xmlsitemap_node/xmlsitemap_node.module
index 3d0e534..4d2c67f 100644
--- a/xmlsitemap_node/xmlsitemap_node.module
+++ b/xmlsitemap_node/xmlsitemap_node.module
@@ -331,3 +331,16 @@ function xmlsitemap_node_view_access($node, $account = NULL) {
 
   return FALSE;
 }
+
+/**
+ * Implements hook_features_pipe_COMPONENT_alter() for node component.
+ *
+ * Add node type variables to exported node types.
+ */
+function xmlsitemap_node_features_pipe_node_alter(&$pipe, $data, $export) {
+  if (!empty($data)) {
+    foreach ($data as $node_type) {
+      $pipe['variable'][] = "xmlsitemap_settings_node_{$node_type}";
+    }
+  }
+}
