File tree Expand file tree Collapse file tree 4 files changed +41
-3
lines changed
Expand file tree Collapse file tree 4 files changed +41
-3
lines changed Original file line number Diff line number Diff line change @@ -149,6 +149,7 @@ The plugin provides the following additional features.
149149* Custom WordPress Settings
150150* Custom WordPress Tools
151151* Maintenance Mode
152+ * Mastodon Verification
152153
153154## Related Theme
154155
@@ -192,6 +193,12 @@ This project is licensed under the GPL3 License.
192193
193194## Changelog
194195
196+ ### 0.8
197+
198+ Release pending.
199+
200+ * Added: Mastodon Verification
201+
195202### 0.7
196203
197204Released: 01.05.2023
Original file line number Diff line number Diff line change 22Contributors: unmus
33Tags: blog, custom
44Requires at least: 6.2
5- Tested up to: 6.2
6- Stable tag: 0.7
5+ Tested up to: 6.5
6+ Stable tag: 0.8
77License: GNU General Public License v3 or later
88License URI: https://www.gnu.org/licenses/gpl-3.0.html
99
Original file line number Diff line number Diff line change 44Plugin Name: unmus
55Plugin URI: https://www.unmus.de/
66Description: Additional WordPress Features @ unmus
7- Version: 0.7
7+ Version: 0.8
88Author: Marco Hitschler
99Author URI: https://www.unmus.de/
1010License: GPL3
4343require_once ('unmus_loop.php ' );
4444require_once ('unmus_archives.php ' );
4545require_once ('unmus_menu.php ' );
46+ require_once ('unmus_me.php ' );
4647
4748// Ensure that all required functions are available during setup
4849require_once ( ABSPATH . 'wp-admin/includes/upgrade.php ' );
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ /**
4+ * Me
5+ *
6+ * @package unmus
7+ * @since 0.8
8+ */
9+
10+ // Security: Stops code execution if WordPress is not loaded
11+ if (!defined ('ABSPATH ' )) { exit ; }
12+
13+ /**
14+ * Mastodon Verification
15+ *
16+ * @since 0.8
17+ */
18+
19+ function unmus_mastodon_verification () {
20+
21+ ?>
22+
23+ <link href="https://mastodon.social/@irrlicht" rel="me">
24+
25+ <?php
26+
27+ }
28+ add_action ('wp_head ' , 'unmus_mastodon_verification ' );
29+
30+ ?>
You can’t perform that action at this time.
0 commit comments