Skip to content

Commit 6c18433

Browse files
authored
Fix typo in custom post content settings. (#1038)
Introduced in #930.
1 parent acb42ff commit 6c18433

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414
### Fixed
1515

1616
* Prevent hex color codes in HTML attributes from being added as post tags
17+
* Fixed a typo in the custom post content settings
1718

1819
## [4.3.0] - 2024-12-02
1920

readme.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ For reasons of data protection, it is not possible to see the followers of other
136136

137137
* Added: Screen reader text for the "Follow Me" block for improved accessibility
138138
* Fixed: Prevent hex color codes in HTML attributes from being added as post tags
139-
139+
* Fixed: A typo in the custom post content settings
140140

141141
= 4.3.0 =
142142

templates/settings.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112
<li><code>[ap_content]</code> - <?php \esc_html_e( 'The post&#8217;s content.', 'activitypub' ); ?></li>
113113
<li><code>[ap_excerpt]</code> - <?php \esc_html_e( 'The post&#8217;s excerpt (may be truncated).', 'activitypub' ); ?></li>
114114
<li><code>[ap_permalink]</code> - <?php \esc_html_e( 'The post&#8217;s permalink.', 'activitypub' ); ?></li>
115-
<li><code>[ap_shortlink]</code> - <?php echo \wp_kses( \__( 'The pos&#8217;s shortlink. I can recommend <a href="https://wordpress.org/plugins/hum/" target="_blank">Hum</a>.', 'activitypub' ), 'default' ); ?></li>
115+
<li><code>[ap_shortlink]</code> - <?php echo \wp_kses( \__( 'The post&#8217;s shortlink. I can recommend <a href="https://wordpress.org/plugins/hum/" target="_blank">Hum</a>.', 'activitypub' ), 'default' ); ?></li>
116116
<li><code>[ap_hashtags]</code> - <?php \esc_html_e( 'The post&#8217;s tags as hashtags.', 'activitypub' ); ?></li>
117117
</ul>
118118
<p><?php \esc_html_e( 'You can find the full list with all possible attributes in the help section on the top-right of the screen.', 'activitypub' ); ?></p>

0 commit comments

Comments
 (0)