Get post id shortcode

Place the below code to your themes functions.php or inside your plugin and the [return_post_id] shortcode will print the post ID.

add_shortcode( 'return_post_id', 'the_dramatist_return_post_id' );

function the_dramatist_return_post_id() {
    return get_the_ID();
}

Hope that helps.

Leave a Comment