Skip to content

Instantly share code, notes, and snippets.

@ninnypants
Forked from whyisjake/gist:1372394
Created November 17, 2011 05:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ninnypants/1372413 to your computer and use it in GitHub Desktop.
Save ninnypants/1372413 to your computer and use it in GitHub Desktop.
functions for make:projects
function js_add_review($content) {
global $post;
$content = $content.js_ratings_box();
$guide = get_post_custom_values('MakeProjectsGuideNumber');
if (isset($guide[0])) {
$content .= js_make_project($guide);
}
return $content;
}
add_filter( 'the_content', 'js_add_review' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment