Rejection Reason:
to be honest, blogify was written as a really simple tool to add blog posts to your page for people who used to edit their index.html by hand. I have no intention of making it more advanced, sorry. <3 xoxo
Salya asked on 04.11.2025
Can you do a Tutorial on how to integration the Advent Calendar to my layout? I tried using the integration in the config and it didn't work. So help please?
Additional Notes:
hey! is your calendar in a folder? ☺️ if your advent calendar script is in a folder and your header/footer files are somewhere else, you have to adjust the path in your config. I hope it's okay if I write a mini tutorial here directly, because normally (when not in a folder), the script just picks the files automatically.
the reason why it doesn't work for you is probably because the server starts looking from the directory of the current file.
so, for example, if your script is in a folder like event/adventcalendar.php, the server expects the header file in the event folder. you need to tell the server how to move to the correct location. this is kinda a general rule for most php scripts actually, just a tip for the future! ☺️
example 1: header and footer files are outside of the script folder, "one folder back":
📁 home
├─ 📄 header.php
├─ 📄 footer.php
└─ 📁 event
└─ 📄 adventcalendar.php
__DIR__ . '/../header.php'
the .. means 'go up one folder' in the server directory hierarchy.
example 2: header and footer files are two folders back:
also, when your header and footer files (and your css) are outside of the script folder, image paths in your css usually need to start with / so the server loads them from the root and not from inside the script folder. for example: background-image: url('/images/snow.png');
also just a small tip: it's usually easier not to put php scripts deep inside nested folders, because paths can start acting unpredictable really fast.
but the solution above should fix your issues! I hope this helps! feel free to contact me if you need help. ✨
A tutorial how to create a custom wp theme ? Or a template ? A wp starterkit if you will👍🏽
Rejection Reason:
hi matt! there actually already is a starter theme generator for wordpress ☺️ it is called 'underscores', and it creates a blank theme with all the required core files: https://underscores.me/.
a more recent starter theme by automattic is 'blockbase', which supports the latest block-based features in wordpress. personally, i am not a big fan of those. i still prefer the old-school approach like underscores.
maybe i will make my own templates in the future, but i don't personally work with wordpress anymore (and neither does danny). wordpress has shifted heavily toward block-based editing and gutenberg, which i am just not really into. 🥲
the reason why it doesn't work for you is probably because the server starts looking from the directory of the current file.
so, for example, if your script is in a folder like event/adventcalendar.php, the server expects the header file in the event folder. you need to tell the server how to move to the correct location. this is kinda a general rule for most php scripts actually, just a tip for the future! ☺️
example 1: header and footer files are outside of the script folder, "one folder back":
📁 home
├─ 📄 header.php
├─ 📄 footer.php
└─ 📁 event
└─ 📄 adventcalendar.php
__DIR__ . '/../header.php'the
..means 'go up one folder' in the server directory hierarchy.example 2: header and footer files are two folders back:
📁 home
├─ 📄 header.php
├─ 📄 footer.php
└─ 📁 event
└─ 📁 advent
└─ 📄 adventcalendar.php
then you need to go up two folders:
__DIR__ . '/../../header.php'each
../steps up one directory.also, when your header and footer files (and your css) are outside of the script folder, image paths in your css usually need to start with / so the server loads them from the root and not from inside the script folder. for example:
background-image: url('/images/snow.png');also just a small tip: it's usually easier not to put php scripts deep inside nested folders, because paths can start acting unpredictable really fast.
but the solution above should fix your issues! I hope this helps! feel free to contact me if you need help. ✨
a more recent starter theme by automattic is 'blockbase', which supports the latest block-based features in wordpress. personally, i am not a big fan of those. i still prefer the old-school approach like underscores.
maybe i will make my own templates in the future, but i don't personally work with wordpress anymore (and neither does danny). wordpress has shifted heavily toward block-based editing and gutenberg, which i am just not really into. 🥲