1. Go to this page and download the library: Download micropackage/classnames library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
/**
* Example WordPress template using ACF
*/
use Micropackage\ClassNames\ClassNames;
$text_color = get_filed( 'text-color' );
$classnames = new ClassNames(
'main-hero',
[
'has-background' => get_filed( 'has-background' ), // Conditionally add background class
"has-{$text_color}-color" => $text_color, // Only add color class if color is not null
]
);
$classnames = new ClassNames( 'foo' );
if ( is_bar() ) {
$classnames->add( 'bar', [ 'baz' => is_baz() ] );
}