Posts by versluis

How to add code to the header in WordPress

Posted on Feb 28, 2018

WordPress has a hook that lets us add arbitrary HTML code to the <header> tag of a website. Several plugins can be found that accomplish this, but it’s so easy to do that a plugin is often...

Learn More

How to show a list of all articles in WordPress

Posted on Feb 19, 2018

There’s a handy function in WordPress called wp_get_archives(). With it we can create a lot of useful output with just a few lines of code. To list all articles ever published on a site, we can do this:...

Learn More