Mode:
Duration:
1
Coding works best on desktop or with an external keyboard.
Coding works best on desktop or with an external keyboard.
A minimal WordPress plugin that outputs 'Hello, World!' in the site footer.
<?php
/*
Plugin Name: Hello World Plugin
Description: A simple plugin to display Hello World in the footer.
Version: 1.0
Author: Your Name
*/
add_action('wp_footer', 'hello_world_plugin');
function hello_world_plugin() {
echo '<p style="text-align:center;">Hello, World! from my first plugin</p>';
}WordPress is an open-source content management system (CMS) written in PHP, widely used for building websites and blogs. Its plugin ecosystem allows extending functionality, from e-commerce to SEO, without heavy custom coding.
Origin & Creator
WordPress was created in 2003 by Matt Mullenweg and Mike Little as a fork of b2/cafelog blogging software.
Industrial Note
WordPress powers millions of websites worldwide, from small blogs to enterprise portals, making it dominant in CMS and web publishing, with extensive plugin support for specialized industries.