to be compatible with cache plugin
-
Hi, I am the developer of WP Fastest Cache. I want to make my plugin to be compatible with your plugin so I added the hook as below. I want to clear cache of the page which is voted.
add_action( 'mrp_after_save_rating_entry_success', array($this, 'my_mrp_after_save_rating_entry_success'), 10, 3 ); public function my_mrp_after_save_rating_entry_success($rating_entry, $is_new, $entry_status_changed){ //toDo }
but the hook does not work. what should I do?
- The topic ‘to be compatible with cache plugin’ is closed to new replies.