Ping-o-matic script implementation

While the past ten years I enjoyed using Ping-o-matig service to ping the blog.

Now I would like to add this function to my Kirby blog
https://getkirby.com/docs/cookbook/blog

Therefore I found a nice script on the net

Has anyone an Idea on how to implement such a script to Kirby blog ?

:slight_smile:

The easiest way to add a function to Kirby is to save it as a plugin. Plugins are automatically loaded, so all functions are immediately available for use in controllers, templates, snippets etc. You can either put a file directly in the plugins folder, e.g. /site/plugins/methods.php, or you can create a subfolder that contains your plugins file. In the latter case, the (main) file in the folder must have the same name as the folder, for example /site/plugins/myplugin/myplugin.php.