From 83991c0cd83e56c34e5937fcf8fb88381ed5c319 Mon Sep 17 00:00:00 2001
From: Matthias Pfefferle
Date: Tue, 23 May 2023 12:14:39 +0200
Subject: [PATCH] fix #332
and some of the feedback of @mattwiebe
---
includes/help.php | 38 +++++++++++++++++++-------------------
1 file changed, 19 insertions(+), 19 deletions(-)
diff --git a/includes/help.php b/includes/help.php
index ccf61cc..291162c 100644
--- a/includes/help.php
+++ b/includes/help.php
@@ -8,37 +8,37 @@
'' . __( 'The following Template Tags are available:', 'activitypub' ) . '
' .
'' .
'[ap_title]
' .
- '- ' . \wp_kses( __( 'The post\'s title.', 'activitypub' ), 'default' ) . '
' .
- '[ap_content]
' .
- '- ' . \wp_kses( __( 'The post\'s content.', 'activitypub' ), 'default' ) . '
' .
+ '- ' . \wp_kses( __( 'The post\'s title.', 'activitypub' ), array( 'code' => array() ) ) . '
' .
+ '[ap_content apply_filters="yes"]
' .
+ '- ' . \wp_kses( __( 'The post\'s content. With
apply_filters
you can decide if filters (apply_filters( \'the_content\', $content )
) should be applied or not (default is yes
). The values can be yes
or no
. apply_filters
attribute is optional.', 'activitypub' ), array( 'code' => array() ) ) . ' ' .
'[ap_excerpt lenght="400"]
' .
- '- ' . \wp_kses( __( 'The post\'s excerpt (default 400 chars).
length
attribute is optional.', 'activitypub' ), 'default' ) . ' ' .
+ '- ' . \wp_kses( __( 'The post\'s excerpt (default 400 chars).
length
attribute is optional.', 'activitypub' ), array( 'code' => array() ) ) . ' ' .
'[ap_permalink type="url"]
' .
- '- ' . \wp_kses( __( 'The post\'s permalink.
type
can be either: url
or html
(an <a /> tag). type
attribute is optional.', 'activitypub' ), 'default' ) . ' ' .
+ '- ' . \wp_kses( __( 'The post\'s permalink.
type
can be either: url
or html
(an <a /> tag). type
attribute is optional.', 'activitypub' ), array( 'code' => array() ) ) . ' ' .
'[ap_shortlink type="url"]
' .
- '- ' . \wp_kses( __( 'The post\'s shortlink.
type
can be either url
or html
(an <a /> tag). I can recommend Hum, to prettify the Shortlinks. type
attribute is optional.', 'activitypub' ), 'default' ) . ' ' .
+ '- ' . \wp_kses( __( 'The post\'s shortlink.
type
can be either url
or html
(an <a /> tag). I can recommend Hum, to prettify the Shortlinks. type
attribute is optional.', 'activitypub' ), array( 'code' => array() ) ) . ' ' .
'[ap_hashtags]
' .
- '- ' . \wp_kses( __( 'The post\'s tags as hashtags.', 'activitypub' ), 'default' ) . '
' .
+ '- ' . \wp_kses( __( 'The post\'s tags as hashtags.', 'activitypub' ), array( 'code' => array() ) ) . '
' .
'[ap_hashcats]
' .
- '- ' . \wp_kses( __( 'The post\'s categories as hashtags.', 'activitypub' ), 'default' ) . '
' .
+ '- ' . \wp_kses( __( 'The post\'s categories as hashtags.', 'activitypub' ), array( 'code' => array() ) ) . '
' .
'[ap_image type=full]
' .
- '- ' . \wp_kses( __( 'The URL for the post\'s featured image, defaults to full size. The type attribute can be any of the following:
thumbnail
, medium
, large
, full
. type
attribute is optional.', 'activitypub' ), 'default' ) . ' ' .
+ '- ' . \wp_kses( __( 'The URL for the post\'s featured image, defaults to full size. The type attribute can be any of the following:
thumbnail
, medium
, large
, full
. type
attribute is optional.', 'activitypub' ), array( 'code' => array() ) ) . ' ' .
'[ap_author]
' .
- '- ' . \wp_kses( __( 'The author\'s name.', 'activitypub' ), 'default' ) . '
' .
+ '- ' . \wp_kses( __( 'The author\'s name.', 'activitypub' ), array( 'code' => array() ) ) . '
' .
'[ap_authorurl]
' .
- '- ' . \wp_kses( __( 'The URL to the author\'s profile page.', 'activitypub' ), 'default' ) . '
' .
+ '- ' . \wp_kses( __( 'The URL to the author\'s profile page.', 'activitypub' ), array( 'code' => array() ) ) . '
' .
'[ap_date]
' .
- '- ' . \wp_kses( __( 'The post\'s date.', 'activitypub' ), 'default' ) . '
' .
+ '- ' . \wp_kses( __( 'The post\'s date.', 'activitypub' ), array( 'code' => array() ) ) . '
' .
'[ap_time]
' .
- '- ' . \wp_kses( __( 'The post\'s time.', 'activitypub' ), 'default' ) . '
' .
+ '- ' . \wp_kses( __( 'The post\'s time.', 'activitypub' ), array( 'code' => array() ) ) . '
' .
'[ap_datetime]
' .
- '- ' . \wp_kses( __( 'The post\'s date/time formated as "date @ time".', 'activitypub' ), 'default' ) . '
' .
+ '- ' . \wp_kses( __( 'The post\'s date/time formated as "date @ time".', 'activitypub' ), array( 'code' => array() ) ) . '
' .
'[ap_blogurl]
' .
- '- ' . \wp_kses( __( 'The URL to the site.', 'activitypub' ), 'default' ) . '
' .
+ '- ' . \wp_kses( __( 'The URL to the site.', 'activitypub' ), array( 'code' => array() ) ) . '
' .
'[ap_blogname]
' .
- '- ' . \wp_kses( __( 'The name of the site.', 'activitypub' ), 'default' ) . '
' .
+ '- ' . \wp_kses( __( 'The name of the site.', 'activitypub' ), array( 'code' => array() ) ) . '
' .
'[ap_blogdesc]
' .
- '- ' . \wp_kses( __( 'The description of the site.', 'activitypub' ), 'default' ) . '
' .
+ '- ' . \wp_kses( __( 'The description of the site.', 'activitypub' ), array( 'code' => array() ) ) . '
' .
'
' .
'' . __( 'You may also use any Shortcode normally available to you on your site, however be aware that Shortcodes may significantly increase the size of your content depending on what they do.', 'activitypub' ) . '
' .
'' . __( 'Note: the old Template Tags are now deprecated and automatically converted to the new ones.', 'activitypub' ) . '
' .
@@ -48,8 +48,8 @@
\get_current_screen()->add_help_tab(
array(
- 'id' => 'glossar',
- 'title' => \__( 'Glossar', 'activitypub' ),
+ 'id' => 'glossary',
+ 'title' => \__( 'Glossary', 'activitypub' ),
'content' =>
'' . \__( 'Fediverse', 'activitypub' ) . '
' .
'' . \__( 'The Fediverse is a new word made of two words: "federation" + "universe"', 'activitypub' ) . '
' .