Skip to content

Instantly share code, notes, and snippets.

@barbietunnie
Forked from danielpataki/docblock.php
Last active September 13, 2015 17:34
Show Gist options
  • Save barbietunnie/b61538f3fadf53f6939f to your computer and use it in GitHub Desktop.
Save barbietunnie/b61538f3fadf53f6939f to your computer and use it in GitHub Desktop.
docblock
/**
* Retrive Channel IDs
*
* This function retreives all categories which are set as channels.
* Channels on the website are special categories that have a mailing
* list attached which users can subscribe to.
*
* It returns an array of term objects if $format is set to 'objects',
* otherwise returns an array of term_ids.
*
* Example:
* $channels = bsb_get_channels( 'objects' );
*
* @param string $format The type of value to return, an array of ids or objects.
* @return array The return array of term objects or term_ids
* @since 0.8.6
* @author Daniel Pataki
*
*/
function bsb_get_channels() {
// Function code in here
}
/**
* This is the main sass file which brings together various parts of the
* stylesheet through imports and specific style rules. See the Foundation
* documentation for more on the framework used.
*
* http://foundation.zurb.com/
*
*
* CONTENTS
*
* 1. TOOLS
* 1.1. Functions............Useful functions
* 1.2. Mixins...............Useful mixins.
*
* 2. SETTINGS
* 2.1. Settings.............Globally-available variables and config.
*
* 3. GENERIC
* 3.1. Reset................Eric Meyer CSS Reset
* 3.2. Visibility...........Classes for mobile/tablet/desktop visibility
*
* 4. MODULES
* 4.1. Retina...............Retina support mixin
* 4.2. Grid.................Grid from Zurb's Foundation
* 4.3. Font Awesome.........Includes for the Font Awesome icon font
* 4.4. MMenu................Includes for MMenu and its addons
*
* 5. BASIC ELEMENTS
* 5.1. Typography...........General typography rules
* 5.2. Structure............Content/Sidebar structure
*
* 6. COMPONENTS
* 6.1. General..............General site-wide styles
* 6.2. Buttons..............General button styles
* 6.3. Header...............Styles for the header
*
* 7. Custom Pages
* 7.1. Account Verify.......Account verification page
*
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment