Web Development Tutorials
//

Category: Programming

Programming

Send Email in WordPress With wp_mail

Send notifications the WordPress way: wp_mail with headers, a From address that exists, an HTML body and attachments - then catch the failure it…

August 14, 2026

Programming

List Files in a Directory With PHP

Inventory a folder with PHP: match a pattern with glob(), read every entry with scandir(), walk sub-folders with RecursiveDirectoryIterator, then sort by size or…

August 13, 2026

Programming

Submit a Form With jQuery AJAX POST

Send a form's fields in the background and show the answer without reloading the page. preventDefault() stops the normal submission, serialize() packs every field…

August 12, 2026

Programming

Modify the Main Query With pre_get_posts

WordPress builds a query for every page before it runs, and pre_get_posts hands you that query while it is still being built. Change how…

August 12, 2026