wordpress-website-lifecycle/mu-plugins/szv-signature.php
2023-08-04 10:34:27 +00:00

15 lines
313 B
PHP

<?php
/*
* Plugin Name: Add my signature to footer
* Plugin URI: https://github.com/szepeviktor/wordpress-website-lifecycle
*/
add_action(
'wp_footer',
static function () {
echo "\n<!-- DevOps services and consulting: Viktor Szépe <viktor@szepe.net> -->\n";
},
PHP_INT_MAX,
0
);