<28/>
28 Lazy Coder

Category: All

Posts
A

PHP Loops Explained: for, while, do-while & foreach

Imagine you had to print “Hello” 100 times using PHP. Would you really write echo "Hello"; one hundred separate times?…

PHP · 12 min read
B

JavaScript Scope Explained: Global, Function & Block Scope

Have you ever declared a variable in one part of your code, and then got a confusing error like ReferenceError:…

JavaScript · 17 min read
C

PHP Functions Explained: A Complete Beginner’s Guide

If you’ve just started learning PHP, you’ve probably come across the word “function” more times than you can count. Functions…

PHP · 12 min read
D

WordPress Template Tags Explained: A Beginner’s Guide

Have you ever opened a WordPress theme file and seen little snippets like the_title() or the_content() sitting inside the PHP…

WordPress · 17 min read
E

WordPress Custom Post Types Explained: A Beginner-Friendly Guide

WordPress started as a blogging platform, but today it can power much more than a blog. You can use WordPress…

All · 16 min read
F

PHP Arrays Explained: A Complete Beginner’s Guide with Examples

If you’re learning PHP, you’ll quickly reach a point where storing just one value in a variable isn’t enough. Maybe…

PHP · 16 min read
G

JavaScript Promises Explained: A Complete Beginner’s Guide

Have you ever clicked a “Submit” button on a website and seen a little spinning loader before anything happens? During…

All · 13 min read
H

PHP Conditional Statements Explained: A Beginner’s Guide with Examples

Think about your daily routine for a second. If it’s raining, you carry an umbrella. If it’s sunny, you wear…

PHP · 9 min read
I

How to Add CSS and JavaScript in WordPress Themes

Imagine you just built a small JavaScript slider or wrote a few custom CSS rules, and now you want them…

WordPress · 10 min read
J

WordPress functions.php Explained: What It Does and How to Use It

Have you ever opened your WordPress theme’s folder, spotted a file called functions.php, and quietly closed it again because it…

WordPress · 12 min read