One Click Clear Cache URL
-
Hi,
I am looking for One Click clear cache URL is it what you can help with?
I have added codeadd_action('admin_bar_menu', 'add_custom_admin_bar_wp_cache', 1000); function add_custom_admin_bar_wp_cache(){ global $wp_admin_bar; if(!is_super_admin() || !is_admin_bar_showing()) return; if ( is_plugin_active( 'wp-super-cache/wp-cache.php' ) ) { $wp_admin_bar->add_menu( array( 'id' => 'admin_bar_wp_cache', 'meta' => array('title' => 'WP Super Cache', 'target' => '_self'), 'title' => 'WP Super Cache', 'href' => 'https://www.mysite.com/wp-admin/options-general.php?page=wpsupercache&tab=contents' ) ); } }
To add the page to menu so I can quickly clear cache.. but would like to have a link directly to clear cache.
- The topic ‘One Click Clear Cache URL’ is closed to new replies.