wp_super_cache_wptouch_exists()WPSCache 1.0

Хуков нет.

Возвращает

null. Ничего (null).

Использование

wp_super_cache_wptouch_exists();

Код wp_super_cache_wptouch_exists() WPSCache 1.12.0

function wp_super_cache_wptouch_exists() {
	global $cache_wptouch;
	if ( '1' === $cache_wptouch ) {
		return false;
	}

	if ( is_admin() && function_exists( 'wptouch_get_plugin_dir_name' ) ) {
		add_action( 'admin_notices', 'wp_super_cache_wptouch_notice' );
	}
}