$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/');