Creating Shortcodes on WordPress

  • Daniel Loureiro
  • -
  • Jun 15, 2019

In the previous article, we printed a "Hello, World" on screen. It works, but it is clunky, ugly-looking. That's not how plugins output to pages. The most common way plugins interact with pages, printing content on them, is through shortcodes . Shortcodes are small bits of text that we write in articles. They are enclosed by brackets [] , for example, [hello] . When WordPress renders the article, it replaces the shortcodes with plugin's output, for example, "Hello, World!" .

NGINX with multiple users

  • Daniel Loureiro
  • -
  • Jun 5, 2019

For security reasons, you shouldn't run all your NGINX virtual hosts with the same user. TIP See why it's a bad practice to run all sites on the same user at the end of this article .

Copyright 2022 - Daniel Loureiro