Programming
Create a WordPress Widget
A WordPress widget is a self-contained block for a sidebar or footer. Extend the WP_Widget class to build a configurable Recent Posts widget, register…
Programming
A WordPress widget is a self-contained block for a sidebar or footer. Extend the WP_Widget class to build a configurable Recent Posts widget, register…
Programming
A custom page template lets one page break out of your theme's default layout — full-width, no sidebar, a design of its own. Add…
Programming
Group your WordPress content your own way, beyond the built-in categories and tags. register_taxonomy() on the init hook creates a hierarchical Topic taxonomy —…
Programming
Give the WordPress post editor an extra field of your own — a short "key takeaway" saved with each post. A small plugin adds…
Programming
A shortcode lets an author drop dynamic output into any post by typing a small tag in square brackets. This tutorial builds three shortcodes…
Programming
Load stylesheets and scripts the WordPress way, with wp_enqueue_style() and wp_enqueue_script() on the wp_enqueue_scripts hook. This tutorial builds a small plugin that enqueues a…