Answers for "post url in id wordpress"

PHP
0

wordpress get link to post by id

get_permalink();
Posted by: Guest on October-17-2020
1

wordpress get post by id

$post   = get_post( 123 ); // Where 123 is the ID
$output =  apply_filters( 'the_content', $post->post_content );
Posted by: Guest on October-13-2020

Browse Popular Code Answers by Language