diff --git a/includes/help.php b/includes/help.php index 1f29119..6039b9f 100644 --- a/includes/help.php +++ b/includes/help.php @@ -6,43 +6,43 @@ 'title' => \__( 'Template Tags', 'activitypub' ), 'content' => '

' . __( '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' ) . '
-
[ap_excerpt lenght="400"]
-
' . \wp_kses( __( 'The post\'s excerpt (default 400 chars). length parameter is optional.', 'activitypub' ), 'default' ) . '
-
[ap_permalink type="url"]
-
' . \wp_kses( __( 'The post\'s permalink. Type can be either: url or html (an <a /> tag to the url).', 'activitypub' ), 'default' ) . '
-
[ap_shortlink type="url"]
-
' . \wp_kses( __( 'The post\'s shortlink. Type can be either url or html (an <a /> tag to the url). I can recommend Hum, to prettify the Shortlinks.', 'activitypub' ), 'default' ) . '
-
[ap_hashtags]
-
' . \wp_kses( __( 'The post\'s tags as hashtags.', 'activitypub' ), 'default' ) . '
-
[ap_hashcats]
-
' . \wp_kses( __( 'The post\'s categories as hashtags.', 'activitypub' ), 'default' ) . '
-
[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', 'activitypub' ), 'default' ) . '
-
[ap_author]
-
' . \wp_kses( __( 'The author\'s name.', 'activitypub' ), 'default' ) . '
-
[ap_authorurl]
-
' . \wp_kses( __( 'The URL to the author\'s profile page.', 'activitypub' ), 'default' ) . '
-
[ap_date]
-
' . \wp_kses( __( 'The post\'s date.', 'activitypub' ), 'default' ) . '
-
[ap_time]
-
' . \wp_kses( __( 'The post\'s time.', 'activitypub' ), 'default' ) . '
-
[ap_datetime]
-
' . \wp_kses( __( 'The post\'s date/time formated as "date @ time".', 'activitypub' ), 'default' ) . '
-
[ap_blogurl]
-
' . \wp_kses( __( 'The URL to the site.', 'activitypub' ), 'default' ) . '
-
[ap_blogname]
-
' . \wp_kses( __( 'The name of the site.', 'activitypub' ), 'default' ) . '
-
[ap_blogdesc]
-
' . \wp_kses( __( 'The description of the site.', 'activitypub' ), 'default' ) . '
-
' . + '
' . + '
[ap_title]
' . + '
' . \wp_kses( __( 'The post\'s title.', 'activitypub' ), 'default' ) . '
' . + '
[ap_content]
' . + '
' . \wp_kses( __( 'The post\'s content.', 'activitypub' ), 'default' ) . '
' . + '
[ap_excerpt lenght="400"]
' . + '
' . \wp_kses( __( 'The post\'s excerpt (default 400 chars). length attribute is optional.', 'activitypub' ), 'default' ) . '
' . + '
[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' ) . '
' . + '
[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' ) . '
' . + '
[ap_hashtags]
' . + '
' . \wp_kses( __( 'The post\'s tags as hashtags.', 'activitypub' ), 'default' ) . '
' . + '
[ap_hashcats]
' . + '
' . \wp_kses( __( 'The post\'s categories as hashtags.', 'activitypub' ), 'default' ) . '
' . + '
[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' ) . '
' . + '
[ap_author]
' . + '
' . \wp_kses( __( 'The author\'s name.', 'activitypub' ), 'default' ) . '
' . + '
[ap_authorurl]
' . + '
' . \wp_kses( __( 'The URL to the author\'s profile page.', 'activitypub' ), 'default' ) . '
' . + '
[ap_date]
' . + '
' . \wp_kses( __( 'The post\'s date.', 'activitypub' ), 'default' ) . '
' . + '
[ap_time]
' . + '
' . \wp_kses( __( 'The post\'s time.', 'activitypub' ), 'default' ) . '
' . + '
[ap_datetime]
' . + '
' . \wp_kses( __( 'The post\'s date/time formated as "date @ time".', 'activitypub' ), 'default' ) . '
' . + '
[ap_blogurl]
' . + '
' . \wp_kses( __( 'The URL to the site.', 'activitypub' ), 'default' ) . '
' . + '
[ap_blogname]
' . + '
' . \wp_kses( __( 'The name of the site.', 'activitypub' ), 'default' ) . '
' . + '
[ap_blogdesc]
' . + '
' . \wp_kses( __( 'The description of the site.', 'activitypub' ), 'default' ) . '
' . + '
' . '

' . __( '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' ) . '

' . - '

' . \wp_kses( \__( 'Let me know if you miss a template pattern.', 'activitypub' ), 'activitypub' ) . '

', + '

' . \wp_kses( \__( 'Let me know if you miss a Template Tag.', 'activitypub' ), 'activitypub' ) . '

', ) );