有没有办法知道谁下载我的wordpress插件?

时间:2013-11-13 16:33:51

标签: wordpress wordpress-plugin

有没有办法知道谁下载了我的Wordpress插件?它在哪个博客上使用?到目前为止,我可以通过Wordpress插件平台跟踪下载次数,但无法获得更多细节,这将非常有用。

谢谢!

1 个答案:

答案 0 :(得分:1)

你在插件中添加了一些代码,所以当它被激活时,它可以向你发送一封包含该博客详细信息的电子邮件,(虽然我确信这可能不受欢迎!)

ie:http://codex.wordpress.org/Function_Reference/get_option

function send_the_email(){
    // send email
    $msg .= get_option( 'admin_email' ).'\n';
    $msg .= get_option( 'blogname' ).'\n';
    $msg .= get_option( 'siteurl' ).'\n';
    wp_mail( 'you@example.net', 'Plugin Activated On: '.get_option( 'siteurl' ), $msg );
}
function myplugin_activate() {
   // activation code
   send_the_email();
}
register_activation_hook( __FILE__, 'myplugin_activate' );