Posts by Ebrahim P. Leite • 1 point
1 post
-
0
votes1
answer755
viewsA: Display featured posts and image using Wordpress REST API
You can do it like this: <?php $posts = file_get_contents('http://localhost/noticias/wp-json/wp/v2/posts?per_page=2'); $obj = json_decode($posts); foreach ($obj as $post) { echo '<div…