From 963b2795a617ca6e94ecd7eb84249b997423c59b Mon Sep 17 00:00:00 2001 From: Aslak Raanes Date: Sat, 23 Sep 2023 00:15:10 +0200 Subject: [PATCH] Move [ap_hashtags] last in post in Content (#462) --- includes/transformer/class-post.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/transformer/class-post.php b/includes/transformer/class-post.php index eb710fa..0e1463a 100644 --- a/includes/transformer/class-post.php +++ b/includes/transformer/class-post.php @@ -513,7 +513,7 @@ class Post { } if ( 'content' === \get_option( 'activitypub_post_content_type', 'content' ) ) { - return "[ap_content]\n\n[ap_hashtags]\n\n[ap_permalink type=\"html\"]"; + return "[ap_content]\n\n[ap_permalink type=\"html\"]\n\n[ap_hashtags]"; } return \get_option( 'activitypub_custom_post_content', ACTIVITYPUB_CUSTOM_POST_CONTENT );