From 814694c97ee1857942365575e9e450a4217107c8 Mon Sep 17 00:00:00 2001 From: Tobias Buss Date: Mon, 9 Oct 2023 18:13:00 +0200 Subject: [PATCH] adjustable post type --- MMM-Wordpress.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/MMM-Wordpress.js b/MMM-Wordpress.js index b0691fe..38ed994 100644 --- a/MMM-Wordpress.js +++ b/MMM-Wordpress.js @@ -12,7 +12,8 @@ Module.register('MMM-Wordpress', { defaults: { updateInterval: 600000, // 10 minutes url: 'YOUR_WORDPRESS_API_URL', // replace with your WordPress API endpoint - numberOfPosts: 5 // number of posts to display + numberOfPosts: 5, // number of posts to display + posts: 'posts', //Endpoint ("posts" for normal posts, can be changed to custom post type) }, start: function() { @@ -25,11 +26,12 @@ Module.register('MMM-Wordpress', { getPosts: function() { const url = this.config.url; + const posts = this.config.posts; const numberOfPosts = this.config.numberOfPosts; const request = require('request'); - request.get(`${url}/wp-json/wp/v2/posts?per_page=${numberOfPosts}`, (error, response, body) => { + request.get(`${url}/wp-json/wp/v2/${posts}?per_page=${numberOfPosts}`, (error, response, body) => { if (!error && response.statusCode == 200) { this.posts = JSON.parse(body); this.updateDom();