Ir al contenido
'informes_graficos',
'posts_per_page' => 50,
'post_status' => 'publish',
'orderby' => 'date',
'order' => 'DESC',
]);
$data = array_map(function($post) {
return [
'id' => $post->ID,
'title' => $post->post_title,
'content' => apply_filters('the_content', $post->post_content),
];
}, $posts);
echo '';
}
?>