dd693c7e67
* copy and language improvements everywhere * remove "try" thanks @cavalierlife --------- Co-authored-by: Matthias Pfefferle <pfefferle@users.noreply.github.com>
21 lines
783 B
PHP
21 lines
783 B
PHP
<?php
|
|
|
|
$follower_count = \Activitypub\Collection\Followers::count_followers( \get_current_user_id() );
|
|
// translators: The follower count.
|
|
$followers_template = _n( 'Your author profile currently has %s follower.', 'Your author profile currently has %s followers.', $follower_count, 'activitypub' );
|
|
?>
|
|
<div class="wrap">
|
|
<h1><?php \esc_html_e( 'Author Followers', 'activitypub' ); ?></h1>
|
|
<p><?php \printf( \esc_html( $followers_template ), \esc_attr( $follower_count ) ); ?></p>
|
|
|
|
<?php $table = new \Activitypub\Table\Followers(); ?>
|
|
|
|
<form method="get">
|
|
<input type="hidden" name="page" value="activitypub-followers-list" />
|
|
<?php
|
|
$table->prepare_items();
|
|
$table->display();
|
|
?>
|
|
<?php wp_nonce_field( 'activitypub-followers-list', '_apnonce' ); ?>
|
|
</form>
|
|
</div>
|