-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmiscellaneous.php
50 lines (37 loc) · 1.18 KB
/
miscellaneous.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
////////////////////// Product Sales boxes /////////////////////////
function ww_thesis_custom_page() {
$offer = '<div class="whitepaperoffer">';
$offer .= 'Get this article beautifully formatted in PDF.';
$offer .= '</div>';
return $offer;
}
add_shortcode('ww_thesis_custom_page','ww_thesis_custom_page');
////////////////////// Service Sales boxes /////////////////////////
//*
function custompagesale() {
$bio = '<div class="sale" style="height: 100px;">';
$bio .= '<em>';
$bio .= 'Get your custom Thesis template page now.' .
'First 5 people get this offer at $27.';
$bio .= '</em>';
// Learn more...
// Do it yourself! // Direct link to e-junkie.
$bio .= "</div>";
return $bio;
}
add_shortcode('custompagesale','custompagesale');
//*/
//////////////////////// Boxes shortcodes //////////////////////
function wprecipes() {
return 'Have you checked out <a href="http://www.wprecipes.com">WpRecipes</a> today?';
}
add_shortcode('wpr', 'wprecipes');
function preheader_bar() {
?>
<div style="background-color: #000044; color: #ffffff; height:15px;">
</div>
<?php
}
//add_action('thesis_hook_before_header','preheader_bar');
?>