kingkool68/wp-styleguide

There is no license information available for the latest version (dev-master) of this package.

Enable styleguide files for your theme

Installs: 4

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 2

Open Issues: 0

Type:wordpress-plugin

dev-master 2023-11-11 00:41 UTC

This package is auto-updated.

Last update: 2024-09-11 02:39:18 UTC


README

This plugin maps requests to /styleguide/ to a styleguide directory in your WordPress theme. this allows you to craft a styelguide and make it accessible via the front end of your website. This comes in handy for keeping a collection of static components that you can visually QA. All of the functions and classes available to your theme should be available to your styleguide pages as well.

For example, given this directory structure...

my-theme/
    - index.php
    - style.css
    - functions.php
    styleguide/
        - index.php
		- colors.php

A request to /styleguide/colors/ would look for my-theme/styelguide/colors.php. What you put in those files is up to you and your styleguide.

Sass Color Helper function

To get color values from a Sass file you can call WP_Styleguide::get_sass_colors() passing in the path to a scss file to parse.

You'll get back an array of hex colors keyed by their Sass variables.

Example:

array(
    '$white' => '#ffffff',
    '$black' => '#000000',    
);