內容簡介
JAMStackPress – 提升你的 WordPress 後端功能
這個外掛程式透過擴展 WP-JSON API,在 WP-JSON API 回應中新增一組有用的欄位,讓你的前端開發更容易。JAMStackPress 也提供一些選擇性過濾器,讓內容能輕鬆變成前端可使用的格式(無需在前端層次進行取代或廣告圖片寬高屬性的設置)。最後,我們還將兩個額外端點 (聯繫表單和網站地圖) 新增至 WP-JSON API 中,非常有用!
我們考慮了你的靜態網站開發可能遇到的各種情況,換句話說,我們會盡力讓你的生活更輕鬆,只需專注於開發解耦式的前端。
額外欄位 (jamstackpress 物件)
我們包含了一些額外欄位,可以在外掛程式管理頁面中啟用,讓你的前端開發更輕鬆:
人性化的日期欄位 (使用在 WordPress 面板中定義的地區語言):
"readable_date": "March 26, 2018"
文章完整的網址串列,並遵循你在 WordPress 固定連結選項中的設置:
"routes": {
"slug": "/category/post-title/",
"front_link": "https://frontenddomain.com/category/post-title/"
}
每種尺寸的特色圖片網址:
"featured_image": {
"thumbnail": "http://example.com/wp-content/uploads/2022/07/thumbnail-150x150.jpg",
"medium": "http://example.com/wp-content/uploads/2022/07/medium-300x200.jpg",
"medium_large": "http://example.com/wp-content/uploads/2022/07/medium-large-768x512.jpg"
"large": "http://example.com/wp-content/uploads/2022/07/large-1024x683.jpg"
}
SEO 標題和描述標籤 - 與 Yoast 和 RankMath 外掛兼容:
"seo": {
"title": "文章標題",
"description": "文章 SEO 描述"
}
額外端點
JAMStackPress 包含 2 個可選端點,為了讓你的前端開發任務更輕鬆而設計:
/jamstackpress/v1/contact
這個端點會作為聯繫表單後端資源。會儲存一個 jp_contact 自訂文章,並在每次成功提交後發送電子郵件。
使用方式:
在選項面板中啟用自訂聯繫表單流程端點。
填寫並儲存與聯繫表單端點相關的其他選項:聯繫電子郵件、聯繫失敗訊息、聯繫成功訊息和 reCaptcha 密鑰 (Google reCaptcha V3)。
發送到自訂聯繫表單端點的請求,以下是使用 js fetch() 呼叫聯繫表單端點的範例
fetch('https://example.com/wp-json/jamstackpress/v1/contact?',{
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
},
body: JSON.stringify({
name: '姓名',
email: '[email protected]',
subject: '聯繫主旨',
message: '聯繫表單內容的內容',
recaptach_token: 'xxxxxxxxxxx'})
})
/jamstackpress/v1/sitemap
這個端點會回傳完整的文章和分類網址串列,以下是回傳串列的範例:
["/sapiente/eveniet-velit-et-aut-est-et-inventore/","/sapiente/aliquid-aut-ut-eius-excepturi-magni/","/nulla-molestias/eius-ratione-mollitia-aliquam/","/uncategorized/aut-qui-repudiandae-nihil-iste/","/uncategorized/test/","/aliquam/","/ipsa-ratio
外掛標籤
開發者團隊
原文外掛簡介
JAMStackPress – Power-up you WordPress backend
This plugin extends the WP-JSON API by adding a new useful set of fields to the WP-JSON API response, this new set of fields will make your front-end development easier. JAMStackPress also applies some optional filters
to the content in order to make it front-end ready (no need to make replacements or ad image width and height attrs at front-end level). Finally we also adds to more endpoints to the WP-JSON API (contact form and sitemap) very useful!
We think about the possible scenarios of development for your static website, so in other words, we’ll try to make your life easier, so that you only think about developing your decoupled front-end.
Extra fields (jamstackpress object)
We include some extra fields that can be activated in the plugins administration page, that will make your front-end development easier:
Human readable date field (uses the locale defined in your WordPress panel):
"readable_date": "March 26, 2018"
Post’s full slug and front-end link respecting your WordPress permalinks selection:
"routes": {
"slug": "/category/post-title/",
"front_link": "https://frontenddomain.com/category/post-title/"
}
Featured image URLs one for every size:
"featured_image": {
"thumbnail": "http://example.com/wp-content/uploads/2022/07/thumbnail-150x150.jpg",
"medium": "http://example.com/wp-content/uploads/2022/07/medium-300x200.jpg",
"medium_large": "http://example.com/wp-content/uploads/2022/07/medium-large-768x512.jpg"
"large": "http://example.com/wp-content/uploads/2022/07/large-1024x683.jpg"
}
SEO tags Title and Description – Compatible With Yoast and RankMath plugins:
"seo": {
"title": "Post Title",
"description": "Post SEO description"
}
Extra endpoints
JAMStackPress includes 2 optional endpoints, always with the porpoise in mind of making your front end development tasks much more easier
/jamstackpress/v1/contact
This endpoint acts as a contact form back-end resource. Will save a jp_contact custom post and send an email on every success submission.
How to use it:
Enable the custom contact form endpoint in the options panel.
Fill and save the rest of the options related to the contact endpoint: Contact email, Contact Fail Message, Contact Success Message and reCaptcha Secret Key (google reCaptcha V3).
Send a request to the custom contact form endpoint, here is an example of a call to the contact form endpoint using js fetch()
fetch('https://example.com/wp-json/jamstackpress/v1/contact?',{
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
},
body: JSON.stringify({
name: 'Name',
email: '[email protected]',
subject: 'Contact Subject',
message: 'Body of the contact form message',
recaptach_token: 'xxxxxxxxxxx'})
})
/jamstackpress/v1/sitemap
This endpoint will return a full list of posts and categories slugs, here is a sample of returned list:
["/sapiente/eveniet-velit-et-aut-est-et-inventore/","/sapiente/aliquid-aut-ut-eius-excepturi-magni/","/nulla-molestias/eius-ratione-mollitia-aliquam/","/uncategorized/aut-qui-repudiandae-nihil-iste/","/uncategorized/test/","/aliquam/","/ipsa-ratione/","/nulla-molestias/","/perferendis-modi/","/sapiente/","/uncategorized/","/unde-temporibus/","/ut-quo/"]
Content filters & Deploy tools
Content filters
– Replace your WordPress base URL with the front-end URL defined in the plugin settings.
– Add image width and height attributes to every image placed at the content.
– Add _blank target to every external link at the content.
Deploy tools
– Trigger front-end build: You can specify a build webhook url for triggering a deployment in your front-end site, directly from your WordPress back-end. This
is specially useful to keep your front-end site always updated with the latest content, without having to manually trigger a deploy.
