“Obtenga el contenido de Post ID WordPress” Código de respuesta

WP Obtener contenido de publicación por 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

Obtenga el contenido de 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

Respuestas similares a “Obtenga el contenido de Post ID WordPress”

Preguntas similares a “Obtenga el contenido de Post ID WordPress”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código