pagecache_normalize_url_fragments, $fragments

pagecache_normalize_url_fragments, $fragments

Hook Type: filter

See hook in core

Displaying hooks found in version: w3-total-cache.2.10.3

apply_filters('pagecache_normalize_url_fragments, $fragments') is found 1 times:

  • /PgCache_ContentGrabber.php line 2801
    	 *
    	 * @return array The normalized URL fragments.
    	 */
    	private function _normalize_url_fragments( $fragments ) {
    		$fragments                = w3tc_apply_filters( 'pagecache_normalize_url_fragments', $fragments );
    		$fragments['querystring'] = $this->_normalize_querystring( $fragments['querystring'] );
    
    		return $fragments;
    	}
    
    	/**