Getting started

To use the Cuztom, you need to include it first. To do this, add this line of code to your functions.php of your plugin's init file. Note that you need to specify the appropriate path to the file.

include( 'cuztom/cuztom.php' );

Cuztom will determine its own path/dir to include extra files. Alternatively, you can specify your own path, before the include, with:

define( 'CUZTOM_URL', 'the/path/to/cuztom' );

When adding Content Types with Cuztom, also put it in a 'add_action' hook.

function content_types()
{
    // Content types
}
add_action( 'init', 'content_types' );