Posts

Showing posts from October, 2025

#1 wp-theme-basics

WordPress Theme Tutorial for Beginners Beginner WordPress Theme Tutorial (10 Modules) Module 1: Theme Setup Create a folder in wp-content/themes/ called mytheme and add style.css and index.php . Copy /* Theme Name: MyTheme Author: Your Name Description: A beginner WordPress theme Version: 1.0 */ Copy <?php // index.php get_header(); if (have_posts()) : while (have_posts()) : the_post(); the_title('<h2>', '</h2>'); the_content(); endwhile; endif; get_footer(); ?> Module 2: Adding style.css Write basic CSS to style your theme. Copy body { font-family: Arial, sans-serif; background: #f9f9f9; color: #333; } h2 { color: #0073aa; } Module 3: functions.php Enqueue styles and scripts. Copy <?php function mytheme_scripts() { wp_enqueue_style('mytheme-style', get_stylesheet_uri()); wp_enqueue_script('mytheme-main', get_template_directory_uri() . '/main.js...