From f22e8199e4d9920f67bab5d24260428d3b00d6ba Mon Sep 17 00:00:00 2001
From: Tobias Buss <tobi@derbuss.de>
Date: Mon, 9 Oct 2023 19:21:54 +0200
Subject: [PATCH] adjustable post_type

---
 MMM-Wordpress.js | 4 ++--
 node_helper.js   | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/MMM-Wordpress.js b/MMM-Wordpress.js
index 19ce980..fc72a9f 100644
--- a/MMM-Wordpress.js
+++ b/MMM-Wordpress.js
@@ -12,7 +12,7 @@ Module.register('MMM-Wordpress', {
     updateInterval: 600000, // 10 minutes
     url: 'YOUR_WORDPRESS_API_URL', // replace with your WordPress API endpoint
     numberOfPosts: 5, // number of posts to display
-      posts: 'posts', //Endpoint ("posts" for normal posts, can be changed to custom post type)
+    posts: 'posts', //Endpoint ("posts" for normal posts, can be changed to custom post type)
   },
 
   start: function() {
@@ -29,7 +29,7 @@ Module.register('MMM-Wordpress', {
     const numberOfPosts = this.config.numberOfPosts;
 
     //hier müssen die posts noch rein!
-    this.sendSocketNotification('GET_POSTS', { url, numberOfPosts });
+    this.sendSocketNotification('GET_POSTS', { url, posts, numberOfPosts });
   },
 
   socketNotificationReceived: function(notification, payload) {
diff --git a/node_helper.js b/node_helper.js
index 741e21f..bc895f1 100644
--- a/node_helper.js
+++ b/node_helper.js
@@ -10,8 +10,8 @@ module.exports = NodeHelper.create({
     console.log('Notification!');
     if (notification === 'GET_POSTS') {
       console.log('Notification: GET_POSTS');
-      const { url, numberOfPosts } = payload;
-      const apiUrl = `${url}/wp-json/wp/v2/posts?per_page=${numberOfPosts}`;
+      const { url, posts, numberOfPosts } = payload;
+      const apiUrl = `${url}/wp-json/wp/v2/${posts}?per_page=${numberOfPosts}`;
 
       request.get(apiUrl, (error, response, body) => {
         if (!error && response.statusCode == 200) {