Title: bilgedede.org's Replies | WordPress.org

---

# bilgedede.org

  [  ](https://wordpress.org/support/users/bilgededeorg/)

 *   [Profile](https://wordpress.org/support/users/bilgededeorg/)
 *   [Topics Started](https://wordpress.org/support/users/bilgededeorg/topics/)
 *   [Replies Created](https://wordpress.org/support/users/bilgededeorg/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/bilgededeorg/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/bilgededeorg/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/bilgededeorg/engagements/)
 *   [Favorites](https://wordpress.org/support/users/bilgededeorg/favorites/)

 Search replies:

## Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [how to Remove query strings from static resources](https://wordpress.org/support/topic/how-to-remove-query-strings-from-static-resources/)
 *  [bilgedede.org](https://wordpress.org/support/users/bilgededeorg/)
 * (@bilgededeorg)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/how-to-remove-query-strings-from-static-resources/page/2/#post-2388564)
 * Very Easy Method:
    In your theme’s function file (Appearance > Editor > Functions.
   php), add the following code before the closing PHP tag (%>) at the bottom of
   the file:
 *     ```
       function _remove_script_version( $src ){
       	$parts = explode( '?', $src );
       	return $parts[0];
       }
       add_filter( 'script_loader_src', '_remove_script_version', 15, 1 );
       add_filter( 'style_loader_src', '_remove_script_version', 15, 1 );
       ```
   
 * Visual : [http://www.bilgedede.org](http://www.bilgedede.org)
    Source: [http://www.tricksmachine.com/2012/04/remove-query-strings-from-static-resources.html#comment-747724](http://www.tricksmachine.com/2012/04/remove-query-strings-from-static-resources.html#comment-747724)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[W3 Total Cache] [Plugin: W3 Total Cache] w3 total cache java minifiers, high resources?](https://wordpress.org/support/topic/plugin-w3-total-cache-w3-total-cache-java-minifiers-high-resources/)
 *  [bilgedede.org](https://wordpress.org/support/users/bilgededeorg/)
 * (@bilgededeorg)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/plugin-w3-total-cache-w3-total-cache-java-minifiers-high-resources/#post-2643789)
 * thanks for share..

Viewing 2 replies - 1 through 2 (of 2 total)