display_elements() — Thesis Skin API Method

The display_elements() method represents the implementation step of the Thesis Skin Display Options.

After setting up your display() method, you’ll need to declare an array of Box display filters before your Display Options will function properly.

To do this, include a display_elements() method in your Skin, and return an array of applicable Box display filters.

public function display_elements() {
	return array();
}

To see an example of this, check out the Classic Responsive Skin’s skin.php file.

Note: Although Box filters are suffixed by _show, you do not need to include this suffix in your display_elements() return array.