adjustable post_type

This commit is contained in:
Tobias Buss 2023-10-09 19:21:54 +02:00
parent 85ff4c0c6c
commit f22e8199e4
2 changed files with 4 additions and 4 deletions

View File

@ -12,7 +12,7 @@ Module.register('MMM-Wordpress', {
updateInterval: 600000, // 10 minutes updateInterval: 600000, // 10 minutes
url: 'YOUR_WORDPRESS_API_URL', // replace with your WordPress API endpoint 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) posts: 'posts', //Endpoint ("posts" for normal posts, can be changed to custom post type)
}, },
start: function() { start: function() {
@ -29,7 +29,7 @@ Module.register('MMM-Wordpress', {
const numberOfPosts = this.config.numberOfPosts; const numberOfPosts = this.config.numberOfPosts;
//hier müssen die posts noch rein! //hier müssen die posts noch rein!
this.sendSocketNotification('GET_POSTS', { url, numberOfPosts }); this.sendSocketNotification('GET_POSTS', { url, posts, numberOfPosts });
}, },
socketNotificationReceived: function(notification, payload) { socketNotificationReceived: function(notification, payload) {

View File

@ -10,8 +10,8 @@ module.exports = NodeHelper.create({
console.log('Notification!'); console.log('Notification!');
if (notification === 'GET_POSTS') { if (notification === 'GET_POSTS') {
console.log('Notification: GET_POSTS'); console.log('Notification: GET_POSTS');
const { url, numberOfPosts } = payload; const { url, posts, numberOfPosts } = payload;
const apiUrl = `${url}/wp-json/wp/v2/posts?per_page=${numberOfPosts}`; const apiUrl = `${url}/wp-json/wp/v2/${posts}?per_page=${numberOfPosts}`;
request.get(apiUrl, (error, response, body) => { request.get(apiUrl, (error, response, body) => {
if (!error && response.statusCode == 200) { if (!error && response.statusCode == 200) {