0
我想從帖子類型=事件獲取帖子,但未顯示來自帖子帖子類型的正確帖子,但是來自實際WP-POST如何從自定義帖子類型與WP Rest Api v1.2.5獲取帖子
<?php
// Get the JSON
$json = file_get_contents('http://coralgableschamber.org/wp-json/posts?filter[posts_per_page]=1&filter[post_type]=events');
// Convert the JSON to an array of posts
$posts = json_decode($json);
foreach ($posts as $p) {
echo '<p>Title: ' . $p->title . '</p>';
echo '<p>Date: ' . date('F jS', strtotime($p->date)) . '</p>';
// Output the featured image (if there is one)
echo $p->featured_image ? '<amp-img src="' . $p->featured_image->guid . '" width="150" height="110"></amp-img>' : '';
echo '<p>Content: ' . $p->content. '</p>';
}
它顯示錯誤後檢查此鏈接:http://mxcounters.com/coralgables/AMP/front.html
什麼是錯的,我如何修復它使其工作。
謝謝!
現在我想這樣,但仍然沒有從帖子類型事件中獲取帖子 $ json = file_get_contents('http://coralgableschamber.org/wp-json/posts?filter [post_type] = events&filter [posts_per_page] = 1 「); – Xabby
是的,現在工作謝謝@哈爾夫瘋了 – Xabby