diff --git a/plugins/facetapi/adapter.inc b/plugins/facetapi/adapter.inc
index 0a18718..66e5ab5 100644
--- a/plugins/facetapi/adapter.inc
+++ b/plugins/facetapi/adapter.inc
@@ -781,6 +781,13 @@ abstract class FacetapiAdapter {
         $this->processors[$facet['name']]->process();
       }
 
+      /*
+      // Post process each facet's render array.
+      foreach ($this->getEnabledFacets() as $facet) {
+        $this->processors[$facet['name']]->postProcess();
+      }
+      */
+
       // Sets the breadcrumb trail if a search was executed.
       if ($this->searchExecuted()) {
         $this->urlProcessor->setBreadcrumb();
@@ -1131,11 +1138,20 @@ class FacetapiFacetProcessor {
           $this->build = $this->processHierarchy($this->build);
         }
         $this->processQueryStrings($this->build);
+        $this->postProcess();
       }
     }
   }
 
   /**
+   * Post-processes the facet items.
+   */
+  public function postProcess() {
+    // Allow the url-processor to post-process the facet build object.
+    $this->facet->getAdapter()->getUrlProcessor()->postProcessFacetBuild($this->facet->getFacet(), $this->build);
+  }
+
+  /**
    * Helper function to get the facet's active items.
    *
    * @return array
diff --git a/plugins/facetapi/url_processor.inc b/plugins/facetapi/url_processor.inc
index f71590f..ded09b1 100644
--- a/plugins/facetapi/url_processor.inc
+++ b/plugins/facetapi/url_processor.inc
@@ -126,4 +126,12 @@ abstract class FacetapiUrlProcessor {
   public function getFilterKey() {
     return $this->filterKey;
   }
+
+  /**
+   * Allow the url-processor to post-process the facet build object.
+   * In example, modify it's path or query parameters.
+   */
+  public function postProcessFacetBuild(array $facet, array $build) {
+
+  }
 }
