Skip to content

Instantly share code, notes, and snippets.

View danielhomer's full-sized avatar

Daniel Homer danielhomer

View GitHub Profile
@danielhomer
danielhomer / functions.php
Last active August 29, 2015 14:05
WordPress pretty timestamp function. 'Posted 1 day ago' / 'Posted 2 hours ago' etc.
/**
* Echoes a pretty timestamp if the post is younger than max_days.
* Must be used inside the loop.
*
* Examples:
* - Posted 3 days ago
* - Posted 12 hours ago
* - Posted 5 minutes ago
* - Posted just now (less than a minute ago)
* - 2014-07-25 08:33:54 (post is older than $max_days)
@danielhomer
danielhomer / gist:10739996
Last active August 29, 2015 13:59
BBWF Social Bar Markup
<div class="hidden-xs social-bar horizontal">
<ul class="social-buttons">
<li class="linkedin first">
<a target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&url={articleUrl}&title={articleTitle}&summary={articleSummary}&source={articleSource}" title="Share on LinkedIn"><span class="fa fa-linkedin"></span></a>
</li>
<li class="twitter">
<a href="#" title="Share on Twitter"><span class="fa fa-twitter"></span></a>
</li>
<li class="facebook">
<a href="#" title="Share on Facebook"><span class="fa fa-facebook"></span></a>
@danielhomer
danielhomer / gist:10739957
Last active August 29, 2015 13:59
BBWF Social Bar CSS
.social-bar {
position: fixed;
left: 0;
top: 260px;
font-size: 1.5em;
z-index: 1000;
}
.social-bar.horizontal {
bottom: 0;