• Ashish

    (@ashishpatel1992)


    Hi,
    I am looking for One Click clear cache URL is it what you can help with?
    I have added code

    add_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.

    • This topic was modified 7 years, 2 months ago by Ashish.
  • The topic ‘One Click Clear Cache URL’ is closed to new replies.