Skip to content

Instantly share code, notes, and snippets.

@media317
Created August 31, 2013 03:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save media317/6396089 to your computer and use it in GitHub Desktop.
Save media317/6396089 to your computer and use it in GitHub Desktop.
/** Add Project Information After Content */
add_action ( 'genesis_sidebar', 'mmi_sing_project_side' );
function mmi_sing_project_side() {
global $wp_query;
$participants = $wp_query->post->ID;
echo '<div class="mmi-sidebar">';
echo '<section class="widget">';
echo '<h4 class="widgettitle">Participate In This Project</h4>';
echo get_post_meta($participants, 'participants_needed', true);
echo '</section>';
echo '</div>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment