PluginProbe
ActivityPub / 9.3.0
ActivityPub v9.3.0
9.3.1 9.3.0 9.2.2 9.2.1 9.2.0 9.1.0 9.0.2 9.0.1 9.0.0 8.3.0 8.2.1 8.2.0 8.1.1 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.2.0 1.3.0 2.0.0 2.0.1 2.1.0 2.1.1 All 160 releases
activitypub / templates / help-tab / resources.php

resources.php in ActivityPub 9.3.0, at templates/help-tab/resources.php

47 lines 2.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Resources Help Tab template.
4 *
5 * @package Activitypub
6 */
7
8 $anchor_html = array(
9 'a' => array(
10 'href' => true,
11 'target' => true,
12 ),
13 );
14 ?>
15
16 <h2><?php esc_html_e( 'Official Resources', 'activitypub' ); ?></h2>
17 <ul>
18 <li><?php echo wp_kses( __( '<a href="https://wordpress.org/plugins/activitypub/" target="_blank">WordPress.org Plugin Page</a> - Official plugin listing with documentation.', 'activitypub' ), $anchor_html ); ?></li>
19 <li><?php echo wp_kses( __( '<a href="https://github.com/automattic/wordpress-activitypub" target="_blank">GitHub Repository</a> - Source code and development.', 'activitypub' ), $anchor_html ); ?></li>
20 <li><?php echo wp_kses( __( '<a href="https://github.com/automattic/wordpress-activitypub/releases" target="_blank">Release Notes</a> - Latest changes and updates.', 'activitypub' ), $anchor_html ); ?></li>
21 </ul>
22
23 <h2><?php esc_html_e( 'Community Support', 'activitypub' ); ?></h2>
24 <ul>
25 <li><?php echo wp_kses( __( '<a href="https://wordpress.org/support/plugin/activitypub/" target="_blank">WordPress.org Support Forums</a> - Get help from the community.', 'activitypub' ), $anchor_html ); ?></li>
26 <li><?php echo wp_kses( __( '<a href="https://github.com/automattic/wordpress-activitypub/issues" target="_blank">GitHub Issues</a> - Report bugs or suggest features.', 'activitypub' ), $anchor_html ); ?></li>
27 </ul>
28
29 <h2><?php esc_html_e( 'Complementary Plugins', 'activitypub' ); ?></h2>
30 <ul>
31 <li><?php echo wp_kses( __( '<a href="https://wordpress.org/plugins/hum/" target="_blank">Hum</a> - Enhance shortlinks for better sharing.', 'activitypub' ), $anchor_html ); ?></li>
32 <li><?php echo wp_kses( __( '<a href="https://wordpress.org/plugins/webmention/" target="_blank">Webmention</a> - Add Webmention support for additional interactions.', 'activitypub' ), $anchor_html ); ?></li>
33 </ul>
34
35 <h2><?php esc_html_e( 'Fediverse Resources', 'activitypub' ); ?></h2>
36 <ul>
37 <li><?php echo wp_kses( __( '<a href="https://fediverse.party/" target="_blank">Fediverse.Party</a> - Introduction to the Fediverse and its platforms.', 'activitypub' ), $anchor_html ); ?></li>
38 <li><?php echo wp_kses( __( '<a href="https://joinmastodon.org/" target="_blank">Join Mastodon</a> - Information about Mastodon, a popular Fediverse platform.', 'activitypub' ), $anchor_html ); ?></li>
39 <li><?php echo wp_kses( __( '<a href="https://w3c.github.io/activitypub/" target="_blank">ActivityPub Specification</a> - The official W3C specification.', 'activitypub' ), $anchor_html ); ?></li>
40 </ul>
41
42 <h2><?php esc_html_e( 'Further Reading', 'activitypub' ); ?></h2>
43 <ul>
44 <li><?php echo wp_kses( __( '<a href="https://indieweb.org/" target="_blank">IndieWeb</a> - Movement focused on owning your content and identity online.', 'activitypub' ), $anchor_html ); ?></li>
45 <li><?php echo wp_kses( __( '<a href="https://webfinger.net/" target="_blank">WebFinger Protocol</a> - More information about WebFinger.', 'activitypub' ), $anchor_html ); ?></li>
46 </ul>
47