Browse
For agents
About
Github Embed
/
1.9
Github Embed
v1.9
Switch version
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
Overview
Code
github-embed
/
templates
/
author.php
author.php
in Github Embed 1.9, at templates/author.php
12 lines
458 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
<
div
class
=
"
github-embed github-embed-user <?php echo
$
data
['logo_class'] ?>
"
>
2
<
p
>
3
<
a
href
=
"
https://github.com/<?php echo esc_attr(
$
data
['owner'] ) ?>
"
target
=
"
_blank
"
>
4
<
strong
>
5
<
?
php
echo
esc_html
(
$
data
[
'
owner
'
]
)
?
>
6
<
/
strong
>
7
<
/
a
>
8
<
br
>
9
<
?
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
.
10
<
/
p
>
11
<
/
div
>
12