-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbpe_feature.php
32 lines (24 loc) · 975 Bytes
/
bpe_feature.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
function bpe_feature() {
?>
<div class="featuredpost">
<h2>Featured Post</h2>
<a href="http://website-in-a-weekend.net/building-traffic/publish-blog-post/#comments/">
<?php echo get_comments_number(16545);?> comments, add yours!
</a>
</div>
<div class="featuredheadline">
<h2><a href="http://website-in-a-weekend.net/building-traffic/publish-blog-post/">
How to publish the **** out of your blog post</a></h2>
<p>You know, writing a blog post is about half the work...
or did you know that?</p>
<p>Getting it <em>published</em> is a whole 'nother ball game.</p>
<p>Fortunately, you now have a resource that lays it all out,
step-by-step guidelines for helping you get your blog post
out there in front of everyone... including Google.</p>
<p><a href="http://website-in-a-weekend.net/building-traffic/publish-blog-post/">Read How to publish the **** out of your blog post...</a></p>
</div>
<?php
}
add_action('thesis_hook_feature_box','bpe_feature');
?>