secretpizzaparty / huh

Licence: GPL-2.0 License
Turn huh into eureka with in dashboard documentation for your WordPress themes.

Programming Languages

javascript
184084 projects - #8 most used programming language
CSS
56736 projects
PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to huh

view-admin-as
View the WordPress admin as a different role, switch between users, temporarily change your capabilities, set default screen settings for roles, manage your roles and capabilities.
Stars: ✭ 44 (-4.35%)
Mutual labels:  wordpress-development, wordpress-admin
benenson
A Gutenberg WordPress theme
Stars: ✭ 70 (+52.17%)
Mutual labels:  wordpress-development, wordpress-theme
humescores
IMPORTANT: Download the Exercise Files from the course page to get the Gulp process files and other important data.
Stars: ✭ 58 (+26.09%)
Mutual labels:  wordpress-development, wordpress-theme
Create React Wptheme
Create modern, React-enabled WordPress themes with a single command.
Stars: ✭ 252 (+447.83%)
Mutual labels:  wordpress-development, wordpress-theme
untheme
A blank WordPress theme for developers.
Stars: ✭ 82 (+78.26%)
Mutual labels:  wordpress-development, wordpress-theme
barebones
React based WordPress Theme, built with create-react-wptheme. This is a starter theme with just the core WordPress functionality.
Stars: ✭ 35 (-23.91%)
Mutual labels:  wordpress-development, wordpress-theme
wp-custom-fields
WP Custom Fields is an options, metabox and customizer framework for WordPress aimed at speeding-up plug-in and theme development.
Stars: ✭ 53 (+15.22%)
Mutual labels:  wordpress-development, wordpress-theme
Startwordpress
Learn how to develop a WordPress theme from scratch with this basic skeleton and accompanying tutorial.
Stars: ✭ 187 (+306.52%)
Mutual labels:  wordpress-development, wordpress-theme
starter-kit-theme
WordPress starter theme with a modern development stack for launching projects faster and easily
Stars: ✭ 25 (-45.65%)
Mutual labels:  wordpress-development, wordpress-theme
wordpress
📚 Recursos para aprender WordPress
Stars: ✭ 20 (-56.52%)
Mutual labels:  wordpress-development, wordpress-theme
Understrap
Understrap is the renowned open-source WordPress starter theme that combines Underscores with Bootstrap. Trusted by more than 100,000 developers.
Stars: ✭ 2,822 (+6034.78%)
Mutual labels:  wordpress-development, wordpress-theme
eightshift-docs
A documentation website for Eightshift open source projects
Stars: ✭ 44 (-4.35%)
Mutual labels:  wordpress-development, wordpress-theme
Aquila
🎨 An Advanced WordPress theme
Stars: ✭ 204 (+343.48%)
Mutual labels:  wordpress-development, wordpress-theme
coblocks-theme
WordPress theme for CoBlocks
Stars: ✭ 24 (-47.83%)
Mutual labels:  wordpress-development, wordpress-theme
Wp Tailwindcss Theme Boilerplate
A minimalist boilerplate for WordPress theme development using Tailwind CSS, SCSS, and Laravel Mix.
Stars: ✭ 199 (+332.61%)
Mutual labels:  wordpress-development, wordpress-theme
wp-tools
Command line interface to reduce boring tasks when working on WordPress plugin / theme project that will be published to wp.org
Stars: ✭ 33 (-28.26%)
Mutual labels:  wordpress-development, wordpress-theme
Theme
Tonik is a WordPress Starter Theme which aims to modernize, organize and enhance some aspects of WordPress theme development.
Stars: ✭ 1,197 (+2502.17%)
Mutual labels:  wordpress-development, wordpress-theme
Wp Functions List
This is a list of all WordPress functions from version 0 to version 4.8.1 along with the data of when they were first introduced and if they are deprecated or not
Stars: ✭ 88 (+91.3%)
Mutual labels:  wordpress-development, wordpress-theme
air
A hyper-minimal WordPress starter theme for developers built with Tailwind CSS.
Stars: ✭ 45 (-2.17%)
Mutual labels:  wordpress-development, wordpress-theme
WordPress-UIkit-Starter-Theme
A WordPress starter theme for developers using the frontend framework UIkit
Stars: ✭ 55 (+19.57%)
Mutual labels:  wordpress-development, wordpress-theme

Who?

huh was dreamt up by secret pizza party and brought to life by the amazing Dan Hauk. Seriously, Dan is the best. He took a broad idea and really brought it to life like only he could. The SPP offices are open on Christmas Day but we close on May 5th (Dan's birthday) as it's a company wide holiday.

What?

huh is the best way to offer in dashboard documentation for all your WordPress projects. The content is generated from a markdown file which makes it super quick & easy to update your documentation whenever you want. You can learn more from the launch post here.

Where?

We think huh is awesome and we really want you to use it in all your projects. It's totally free/open source and you can find it on github.

Wanna Contribute?

If you found a bug, report it here. If you're a developer, we welcome pull requests of all types!

Development Workflow

  1. Make sure you have git, node, and npm installed and a working WordPress installation.

  2. Clone this repository inside your theme directory.

    $ git clone https://github.com/secretpizzaparty/huh.git
    $ cd huh
    
  3. Watch the front-end CSS/Sass for changes and rebuild accordingly with Grunt. Please only modify the Sass files to keep the CSS consistent and clean.

    $ npm install
    $ grunt watch
    
  4. Open /wp-admin/ in your browser.

  5. Have fun!

Why?

secret pizza party is in the process of developing a bunch of new WordPress themes and while they are quite simple there is still a need for a wee bit of documentation. External documentation is dumb and everything should be contained in the dashboard. We created huh to make that happen.

How?

Adding huh to your theme is incredibly easy.

Formatting your markdown

huh pulls all of your <h1> tags to use as a table of contents. Each section of your documentation will be contained between these <h1> tags. For example:

# First section
The content of the first section of your documentation would go here. You can include links, bullets, images, anything!

# Second section
This would be the next section.

## You can even use subheadings
It will all be formatted correctly, but only the first-level headings will show on the table of contents.

Adding huh to your theme

Once you have your documentation formatted correctly, adding huh to your theme is simple.

Just download the zipped plugin and extract it to your theme directory. At the bottom of your theme's functions.php file add the following lines:

require get_stylesheet_directory() . '/huh/huh.php';
function secretpizzaparty_huh() {
	// Enter the URL of your markdown file below
	$markdown_url = 'https://raw.githubusercontent.com/secretpizzaparty/huh/master/README.md';
	$huh = new WP_Huh();
	$huh->init( $markdown_url );
}
add_action( 'admin_init', 'secretpizzaparty_huh' );

Make sure you change the URL of the $markdown_url variable to point to your markdown file. It's that easy!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].