I'm working on a simple WordPress theme and when it's ready I'll release it to the public. What I was wondering is if there's any solutions to tracking how many people are using my theme? Any ideas would help. I know ,plugin are available to monitor how many times it is *downloaded* but I want something that tells me how many are actually using it and where . Thanks
I use register_activation_hook() and my own update function (that is triggered when the plugin is updated) to send me user's blog URL and a version of the plugin: @file_get_contents("http://my-website.com/plugin-users.php?&status=activate&url=" . get_option('siteurl') . "&version=" . my_plugin_version()); PHP: I also use register_deactivation_hook() to remove URL addresses of blogs where my plugin was deactivated.