mastodon_wordpress_autopost icon indicating copy to clipboard operation
mastodon_wordpress_autopost copied to clipboard

A Wordpress Plugin that automatically posts your new articles to Mastodon

Results 29 mastodon_wordpress_autopost issues
Sort by recently updated
recently updated
newest added

I just started using the plugin and love the way it works. But an odd behaviour I'm noting is it posts twice to Mastodon (even the test Toot did). The...

help wanted

I guess most WP bloggers are adding plain tags such as technology, but I have mine all added as #technology, mainly because I'm using my WP RSS feed to replicate...

So since the latest WP update every time I post a new article or just hit "preview" WP exits with a fatal error. ``` [20-Jan-2022 10:50:47 UTC] PHP Fatal error:...

I notice that not all mastodon instances will work work with your plug; for instance the two below mastodon.online tweety.icu is there a depository that you list instances to include...

question

``` PHP Warning: sizeof(): Parameter must be an array or an object that implements Countable in /blog/wp-content/plugins/autopost-to-mastodon/mastodon_autopost.php on line 545 ``` This is because [`get_the_tags()`](https://developer.wordpress.org/reference/functions/get_the_tags/) returns `FALSE` when there are...

A thing I've noticed when scheduling blogposts is that they also get posted to Mastodon when that option is not checked. Scheduled blogposts always get posted to Mastodon.

Just close this if i'm wrong but... at https://github.com/simonfrey/mastodon_wordpress_autopost/blob/c24f4cef9582d676857690e1988551953afae713/autopost-to-mastodon/trunk/mastodon_autopost.php#L544 shouldn't ``` $post_tags = get_the_tags($id); if (sizeof($post_tags) > 0) { if ($post_tags) { ``` be instead ``` $post_tags = get_the_tags($id); if...

It would be nice, if it were possible to append some [UTM-Parameters](https://en.wikipedia.org/wiki/UTM_parameters) to the published URL. For example: http://domain.com/path?utm_medium=social&utm_source=mastodon

enhancement
help wanted

1. Create a new post 1. Check the "Toot on Mastodon" box 1. Schedule the post for a future date 1. On the Scheduled Posts page, click "Quick Edit" 1....