Skip to content

Instantly share code, notes, and snippets.

@orenshamai
Created April 12, 2015 15:33
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 orenshamai/7848eef275b99c551ba6 to your computer and use it in GitHub Desktop.
Save orenshamai/7848eef275b99c551ba6 to your computer and use it in GitHub Desktop.
function dispos_func( $atts ) {
$atts = shortcode_atts(
array(
'post_id' => 'no foo',
), $atts, 'DisplayPost' );
$post_id = $atts['post_id'];
return get_post_field('post_content', $post_id);
}
add_shortcode( 'DisplayPost', 'dispos_func' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment