$docs — Thesis Skin API Property

The $docs array is useful for supplying helpful documentation links throughout the Thesis UI. By including this property in your Skin class, you can create a one-stop shop for managing documentation links (instead of having to hunt through hundreds of lines of code to find them).

Your $docs array must consist of supported indices (listed below); each index represents a specific output location within the Thesis Admin:

  • content — lower half of Content & Display Options
  • custom_css — Custom CSS
  • design — Design Options
  • display — top half of Content & Display Options
  • header_image — Header Image
  • logo — Logo

Here’s an example $docs array with a few parameters:

public $docs = array(
	'content' => 'https://diythemes.com/focus/docs/content-display/#section-content',
	'design' => 'https://diythemes.com/focus/docs/design/',
	'display' => 'https://diythemes.com/focus/docs/content-display/');