wp/wp-content/plugins/include-mastodon-feed/config-example.php
changeset 23 417f20492bf7
parent 21 48c4eec2b7e6
--- a/wp/wp-content/plugins/include-mastodon-feed/config-example.php	Fri Sep 05 18:52:52 2025 +0200
+++ b/wp/wp-content/plugins/include-mastodon-feed/config-example.php	Mon Sep 08 19:44:41 2025 +0200
@@ -19,7 +19,7 @@
     // set a default instance
     // can still be overriden in shortcode
     // plugin will show a warning if no default is set and instance is omitted in shortcode
-    //define('INCLUDE_MASTODON_FEED_DEFAULT_INSTANCE', 'example.org');
+    define('INCLUDE_MASTODON_FEED_DEFAULT_INSTANCE', 'example.org');
 
     // Maximum number of statuses
     define('INCLUDE_MASTODON_FEED_LIMIT', 20);
@@ -43,6 +43,12 @@
     // can be overridden in shortcode
     define('INCLUDE_MASTODON_FEED_PRESERVE_IMAGE_ASPECT_RATIO', true);
 
+    // load small sized preview images or full size high quality images
+    define( 'INCLUDE_MASTODON_FEED_IMAGE_SIZE', 'preview' );
+
+    // link image to status or image
+    define( 'INCLUDE_MASTODON_FEED_IMAGE_LINK', 'status' );
+
     // only tagged statuses
     // tag name without leading #, case insensitive
     define('INCLUDE_MASTODON_FEED_TAGGED', 'tagname');