Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $url="https://max-logistics.co.id/Max_BLog/wp-json/wp/v2/posts/".$_GET ['id'];
- $ch = curl_init();
- curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
- curl_setopt($ch, CURLOPT_URL,$url);
- $result=curl_exec($ch);
- $posts = json_decode($result, true);
- ?>
- <div class="d-flex w-100 justify-content-between">
- <h2 class="mb-1"><?php echo $posts['title']['rendered']; ?></h2>
- <small><?php echo date('F j, Y', strtotime($posts['date'])); ?></small>
- </div>
- <p class="mb-1"><?php echo $posts['content']['rendered']; ?></p>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement