Created
November 17, 2011 04:55
-
-
Save whyisjake/1372394 to your computer and use it in GitHub Desktop.
functions for make:projects
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function js_add_review($content) { | |
global $post; | |
$original = $content; | |
$content = js_ratings_box(); | |
$content .= $original; | |
return $content; | |
} | |
add_filter( 'the_content', 'js_add_review', 15 ); | |
function js_add_project($content) { | |
global $post; | |
$original = $content; | |
$guide = get_post_custom_values('MakeProjectsGuideNumber'); | |
if (isset($guide[0])) { | |
$content = js_make_project($guide); | |
} | |
$content .= $original; | |
return $content; | |
} | |
add_filter( 'the_content', 'js_add_project', 20 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
function js_add_review($content) {
global $post;
$original = $content;
$content = js_ratings_box();
$content .= $original;
return $content;
}
add_filter( 'the_content', 'js_add_review', 15 );
function js_add_project($content) {
global $post;
$original = $content;
$guide = get_post_custom_values('MakeProjectsGuideNumber');
if (isset($guide[0])) {
$content = js_make_project($guide);
}
$content .= $original;
return $content;
}
add_filter( 'the_content', 'js_add_project', 20 );