an atom (RSS) feed generator written in PHP
Go to file
jasmine 9069618c86
remove unnecessary loops
2023-10-18 13:44:40 +07:00
README.md Update README.md 2023-10-17 21:43:00 +07:00
feed_generator.php remove unnecessary loops 2023-10-18 13:44:40 +07:00

README.md

xml-feed-generator

an RSS/atom feed generator for my personal site 🐱


disclaimer

this script is not meant to be used as is.

expect to do a lot of modification to fit your needs, as this was created specifically for my site structure and blog markup.


how it basically works

  1. match files in a specificied directory.
  2. load the DOM of each file.
  3. parse values retrieved from the following strings/HTML elements, as children of a feed <entry>:
    • <h2> as <title>
    • the datetime attribute of <time> as <updated>
    • <element class="p-summary"> as <summary>
    • <element class="e-content"> (or <element class="entry" for older markup) as <content>
    • /path/to/blog/entry as <id>/<link>
  4. output all of the above in a new file (named articles.xml).

usage

configure a cron job on your server to run this script automatically every now and then, and voila~


reference

feel free to check out the resulting file that i've generated.