Advertisement
frowdst

page by id

Feb 23rd, 2019
279
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <?php
  2. $url="https://max-logistics.co.id/Max_BLog/wp-json/wp/v2/posts/".$_GET ['id'];
  3. $ch = curl_init();
  4. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  5. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  6. curl_setopt($ch, CURLOPT_URL,$url);
  7. $result=curl_exec($ch);
  8. $posts = json_decode($result, true);
  9. ?>
  10. <div class="d-flex w-100 justify-content-between">
  11. <h2 class="mb-1"><?php echo $posts['title']['rendered']; ?></h2>
  12. <small><?php echo date('F j, Y', strtotime($posts['date'])); ?></small>
  13. </div>
  14. <p class="mb-1"><?php echo $posts['content']['rendered']; ?></p>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement