You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I’m trying to tag a group in order that my posts made on Wordpress automatically publish to that group.
Specifically:
If I make a post from Mastodon and tag @[email protected] then my post gets sent out to anybody who follows the Spurs Group. I am trying to perform the same action but from my Wordpress account. I’ve tried adding all of the following in the ‘Post Content’ section of the ActivityPub settings in Wordpress but none of them successfully tag the account:
Is there a current work around to be able to automatically tag another Fediverse user account? If not then could I make this a feature request?
Why
I have created a website specifically to post updates to a Guppe group on Mastodon, so I need to be able to tag the Guppe group account in order for it to be shared to the members of the group.
How
By having the correct tag in the penultimate line of this screenshot.
The text was updated successfully, but these errors were encountered:
function filter_the_content_in_the_main_loop( $content ) {
// Check if we're inside the main loop in a single post page.
if ( is_single() && in_the_loop() && is_main_query() ) {
return esc_html__("@[email protected]").$content;
}
return $content;
Bah, turns out the functions fix only works for new posts, but not for replies to existing posts using the ActivityPub plugin 'reply from' bookmarklet.
What
I’m trying to tag a group in order that my posts made on Wordpress automatically publish to that group.
Specifically:
If I make a post from Mastodon and tag @[email protected] then my post gets sent out to anybody who follows the Spurs Group. I am trying to perform the same action but from my Wordpress account. I’ve tried adding all of the following in the ‘Post Content’ section of the ActivityPub settings in Wordpress but none of them successfully tag the account:
Is there a current work around to be able to automatically tag another Fediverse user account? If not then could I make this a feature request?
Why
I have created a website specifically to post updates to a Guppe group on Mastodon, so I need to be able to tag the Guppe group account in order for it to be shared to the members of the group.
How
By having the correct tag in the penultimate line of this screenshot.
The text was updated successfully, but these errors were encountered: