“wp dapatkan konten posting dengan id” Kode Jawaban

wp dapatkan konten posting dengan id

$post_id = 5// example post id
$post_content = get_post($post_id);
$content = $post_content->post_content;
echo apply_filters('the_content',$content);
YC

Dapatkan konten dari post id wordpress

$my_postid = 12;//This is page id or post id
$content_post = get_post($my_postid);
$content = $content_post->post_content;
$content = apply_filters('the_content', $content);
$content = str_replace(']]>', ']]>', $content);
echo $content;
Shubham Rathod

Jawaban yang mirip dengan “wp dapatkan konten posting dengan id”

Pertanyaan yang mirip dengan “wp dapatkan konten posting dengan id”

Lebih banyak jawaban terkait untuk “wp dapatkan konten posting dengan id” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya