Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ The plugin provides the following additional features.
* Custom WordPress Tools
* Maintenance Mode
* Mastodon Verification
* Mastodon Fediverse Creator

## Related Theme

Expand Down Expand Up @@ -198,6 +199,7 @@ This project is licensed under the GPL3 License.
Release pending.

* Added: Mastodon Verification
* Added: Mastodon Fediverse Creator
* Added: Block Editor Support Custom Post Type Pinseldisko
* Added: Block Editor Support Custom Post Type Raketenstaub
* Changed: Maintenance Mode Internal Processing
Expand Down
18 changes: 18 additions & 0 deletions unmus_me.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,22 @@ function unmus_mastodon_verification() {
}
add_action('wp_head', 'unmus_mastodon_verification');

/**
* Mastodon Creator
*
* @since 0.8
* @see https://blog.joinmastodon.org/2024/07/highlighting-journalism-on-mastodon/
*/

function unmus_mastodon_creator() {

?>

<meta name="fediverse:creator" content="@irrlicht@mastodon.social">

<?php

}
add_action('wp_head', 'unmus_mastodon_creator');

?>