$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>Inserting external image in WordPress plugin to track the plugin instalation|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

Inserting external image in WordPress plugin to track the plugin instalation

matteradmin9PV0评论
Closed. This question needs details or clarity. It is not currently accepting answers.

Want to improve this question? Add details and clarify the problem by editing this post.

Closed 6 years ago.

Improve this question

Recently I saw one WordPress plugin from Wordpress repository that was using external images from his own website inside the plugin

I thought it is not allowed to add external resources inside WordPress plugin

Closed. This question needs details or clarity. It is not currently accepting answers.

Want to improve this question? Add details and clarify the problem by editing this post.

Closed 6 years ago.

Improve this question

Recently I saw one WordPress plugin from Wordpress repository that was using external images from his own website inside the plugin

I thought it is not allowed to add external resources inside WordPress plugin

Share Improve this question asked Feb 21, 2019 at 3:56 rajesh singhrajesh singh 313 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

According to Detailed Plugin Guidelines:

7. Plugins may not track users without their consent.

Plugins may not track users without their consent. In the interest of protecting user privacy, plugins may not contact external servers without explicit and authorized consent. This is commonly done via an ‘opt in’ method, requiring registration with a service or a checkbox within the plugin settings. Documentation on how any user data is collected, and used, should be included in the plugin’s readme, preferably with a clearly stated privacy policy.

So it all depends on what that image was exactly and was it used. Gravatars are external. FontAwesome files as well...

So you can include external resources. But I don't think you should, unless it's necessary. (And tracking users is not a good reason).

Post a comment

comment list (0)

  1. No comments so far