The ideal way to modify the displayed content of all WordPress posts

What will be exemplified here is a way to add content to the footer of posts for viewing without changing the current content of the posts in the database. For this we will use the_content Filter hook. This hook allows you to alter the content for all posts and pages being displayed in the browser. … Continue reading “The ideal way to modify the displayed content of all WordPress posts”

How to create a WordPress plugin

(At the time of this writing, last stable WordPress version was 4.4.2) In the plugins folder (normaly at …/wp-content/plugins) create a new folder with your plugin name. The name should be unique because all WordPress plugins exist in the same folder. If your plugin file name is too generic, you run the risk of another … Continue reading “How to create a WordPress plugin”