I need to add video from youtube in certain place on my page.
I added link in post like https://www.youtube.com/watch?v=GXGR7puGRpg
(post contains only this link), and then I added code on my page
<?php
$post_id_63 = get_post( $post_id = 63 );
if($post_id_63) {
$post_id_63_content = $post_id_63->post_content;
echo $post_id_63_content;
}
?>
but I get just text link on my page, not video. What did I do wrong? How to fix it and make it work ?