layers_center_column_class
The Layers layers center column class function.
Description
layers_center_column_class( (string) $class = '' );
Parameters (1)
- 0. $class — Optional. (string) =>
''
- The class.
Usage
if ( !function_exists( 'layers_center_column_class' ) ) { require_once '/core/helpers/template.php'; } // The class. $class = ''; // NOTICE! Understand what this does before running. $result = layers_center_column_class($class);
Defined (1)
The function is defined in the following location(s).
- /core/helpers/template.php
- function layers_center_column_class( $class = '' ) {
- // Separates classes with a single space, collates classes for body element
- echo 'class="' , join( ' ', layers_get_center_column_class( $class ) ) , '"';
- }