From 85ff4c0c6c7b5d546e62f2a415af10a0664faf9a Mon Sep 17 00:00:00 2001 From: Tobias Buss Date: Mon, 9 Oct 2023 18:54:06 +0200 Subject: [PATCH] Docu update --- README.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/README.md b/README.md index bfd9f34..df3c919 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,28 @@ +# Info + +This module for Magic Mirror should display posts from a WordPress site. + + # Install +```bash git clone https://github.com/tbuss/MMM-Wordpress.git cd MMM-Wordpress npm install +``` + +# Config + +Put this in your config.js + +```js +{ + module: 'MMM-Wordpress', + position: 'bottom_bar', // or any other position + config: { + updateInterval: 10*60*1000, // 10 minutes + url: 'https://www.your_wordpress.url', + numberOfPosts: 5 + } +}, +``` \ No newline at end of file