PluginProbe
Friends / 4.3.0
Friends v4.3.0
4.3.2 4.3.1 4.3.0 4.2.2 4.2.1 4.2.0 4.1.0 2.7.4 2.7.5 2.7.6 2.7.7 2.7.8 2.7.9 2.8.0 2.8.1 2.8.2 2.8.3 2.8.4 2.8.5 2.8.6 2.8.7 2.8.8 2.8.9 2.9.0 2.9.1 All 88 releases
friends / templates / admin / news-4-2.php

news-4-2.php in Friends 4.3.0, at templates/admin/news-4-2.php

39 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * This template contains the Friends 4.2 news entry.
4 *
5 * @package Friends
6 */
7
8 ?>
9 <div class="friends-news-entry-body">
10 <h2><?php esc_html_e( 'Friends 4.2: Direct Messages', 'friends' ); ?></h2>
11
12 <div class="friends-news-changes">
13 <div class="friends-news-change">
14 <h4><?php esc_html_e( 'Direct Messages Page', 'friends' ); ?></h4>
15 <p>
16 <?php
17 echo wp_kses(
18 sprintf(
19 // translators: %s is the direct messages page link.
20 __( 'Read and reply to direct messages from %s with a conversation list, chat-style thread view, live refresh, drafts, profile links, and support for messages from ActivityPub users you do not follow.', 'friends' ),
21 '<a href="' . esc_url( home_url( '/friends/messages/' ) ) . '">' . esc_html__( 'the direct messages page', 'friends' ) . '</a>'
22 ),
23 array(
24 'a' => array(
25 'href' => true,
26 ),
27 )
28 );
29 ?>
30 </p>
31 </div>
32
33 <div class="friends-news-change">
34 <h4><?php esc_html_e( 'Custom Emoji in Actor Names', 'friends' ); ?></h4>
35 <p><?php esc_html_e( 'ActivityPub actor names now render custom emoji in timelines, profiles, and boosted posts.', 'friends' ); ?></p>
36 </div>
37 </div>
38 </div>
39