Title: LiteSpeed Cache plugin
Last modified: August 29, 2019

---

# LiteSpeed Cache plugin

 *  Resolved [Laurence Anthony](https://wordpress.org/support/users/pixallus/)
 * (@pixallus)
 * [6 years, 9 months ago](https://wordpress.org/support/topic/litespeed-cache-plugin-2/)
 * Hi, I’m interested in this plugin. Any issues with LiteSpeed Cache plugin?
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Flitespeed-cache-plugin-2%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

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

 *  Plugin Author [webheadcoder](https://wordpress.org/support/users/webheadllc/)
 * (@webheadllc)
 * [6 years, 9 months ago](https://wordpress.org/support/topic/litespeed-cache-plugin-2/#post-11896585)
 * Sorry, currently that plugin is not supported.
 *  Plugin Author [webheadcoder](https://wordpress.org/support/users/webheadllc/)
 * (@webheadllc)
 * [6 years, 5 months ago](https://wordpress.org/support/topic/litespeed-cache-plugin-2/#post-12283335)
 * I know this is really late, but you could try adding this to your theme’s functions.
   php file. I’m not 100% sure it will work since I don’t have a LiteSpeed server.
 *     ```
       <?php
       function my_lt_cache_enable( $return = false ) {
           if ( class_exists( 'LiteSpeed_Cache_Purge' ) )
               return true;
   
           return $return;
       }
       add_filter('ccfm_supported_caching_exists', 'my_lt_cache_enable');
   
       function my_lt_cache_clear() {
           if ( my_lt_cache_enable() )
               LiteSpeed_Cache_Purge::purge_all( 'Clear Cache For Me' );
       }
       add_action('ccfm_clear_cache_for_me', 'my_lt_cache_clear');
       ```
   

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

The topic ‘LiteSpeed Cache plugin’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/clear-cache-for-widgets.svg)
 * [Clear Cache for Me](https://wordpress.org/plugins/clear-cache-for-widgets/)
 * [Support Threads](https://wordpress.org/support/plugin/clear-cache-for-widgets/)
 * [Active Topics](https://wordpress.org/support/plugin/clear-cache-for-widgets/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/clear-cache-for-widgets/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/clear-cache-for-widgets/reviews/)

 * 2 replies
 * 1 participant
 * Last reply from: [webheadcoder](https://wordpress.org/support/users/webheadllc/)
 * Last activity: [6 years, 5 months ago](https://wordpress.org/support/topic/litespeed-cache-plugin-2/#post-12283335)
 * Status: resolved