Answers for "wp get post by id"

PHP
3

wordpress get post id

// Retrieve the ID of the current item in the WordPress Loop.
get_the_ID()
Posted by: Guest on February-19-2021
0

wp get post content by id

$post_id = 5// example post id
$post_content = get_post($post_id);
$content = $post_content->post_content;
echo apply_filters('the_content',$content);
Posted by: Guest on July-19-2020
0

get post title by post id wordpress

get_post( $post_id )->post_title
Posted by: Guest on October-13-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
0

wp get post id by slug

url_to_postid( site_url('the_slug') );
Posted by: Guest on June-29-2021

Browse Popular Code Answers by Language