FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
startwordpress/sidebar.php at master · sayedrafeeq/startwordpress · GitHub
sayedrafeeq
/
startwordpress
Public
forked from
taniarascia/startwordpress
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
startwordpress
/
sidebar.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
22 lines (20 loc) · 662 Bytes
Breadcrumbs
startwordpress
/
sidebar.php
Copy path
File metadata and controls
22 lines (20 loc) · 662 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<div class="col-sm-3 col-sm-offset-1 blog-sidebar">
<div class="sidebar-module sidebar-module-inset">
<h4>About</h4>
<p>
<?php
the_author_meta
(
'
description
'
);
?>
</p>
</div>
<div class="sidebar-module">
<h4>Archives</h4>
<ol class="list-unstyled">
<?php
wp_get_archives
(
'
type=monthly
'
);
?>
</ol>
</div>
<div class="sidebar-module">
<h4>Elsewhere</h4>
<ol class="list-unstyled">
<li><a href="
<?php
echo
get_option
(
'
github
'
);
?>
">GitHub</a></li>
<li><a href="
<?php
echo
get_option
(
'
twitter
'
);
?>
">Twitter</a></li>
<li><a href="
<?php
echo
get_option
(
'
facebook
'
);
?>
">Facebook</a></li>
</ol>
</div>
</div><!-- /.blog-sidebar -->
Back
|
FazBrowse Home
|
New Git URL