mirror of
https://github.com/szepeviktor/wordpress-website-lifecycle.git
synced 2025-08-17 18:11:08 +08:00
15 lines
313 B
PHP
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
|
|
);
|