PluginProbe
Github Embed / 2.2.1
Github Embed v2.2.1
trunk 1.0 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9 2.0 2.0.1 2.0.2 2.1.0 2.2.0 2.2.1
github-embed / templates / author.php

author.php in Github Embed 2.2.1, at templates/author.php

17 lines 548 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! isset( $data ) && isset( $args['data'] ) ) {
3 $data = $args['data'];
4 }
5 ?>
6 <div class="github-embed github-embed-user <?php echo $data['logo_class'] ?>">
7 <p>
8 <a href="https://github.com/<?php echo esc_attr( $data['owner'] ) ?>" target="_blank">
9 <strong>
10 <?php echo esc_html( $data['owner'] ) ?>
11 </strong>
12 </a>
13 <br>
14 <?php echo esc_html( number_format_i18n( $data['owner_info']->public_repos ) ) ?> repositories, <?php echo esc_html( number_format_i18n( $data['owner_info']->followers ) ) ?> followers.
15 </p>
16 </div>
17