Topic: Admin metaboxes

Blurbette Plugin: Metabox Abstract

One of the biggest benefits of OOP is the ability to extend classes. Depending on how the classes are organized and structured, one class can take care of a lot of tedious or repetitive work, enabling you to benefit by extending it and simply defining a few additional elements.

An abstract class is one that can only be extended — it ... 

Read article

Admin-triggered e-mail

Here’s something that touches on lots of topics. A ‘send e-mail’ button within an admin panel, that opens up a ThickBox window with a standalone form and wp_editor.

The metabox

This requires two functions: one hooked into ‘add_meta_boxes’ which calls the second, the metabox output function:

Most of the second function builds the URL for the button’s href attribute. It points to a ... 

Read article