You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
377 B
23 lines
377 B
<?php |
|
/** |
|
* Aldine Filters |
|
* |
|
* @package Aldine |
|
*/ |
|
|
|
namespace Aldine\Filters; |
|
|
|
/** |
|
* Adds custom classes to the array of body classes. |
|
* |
|
* @param array $classes Classes for the body element. |
|
* @return array |
|
*/ |
|
function body_classes( $classes ) { |
|
// Adds a class of hfeed to non-singular pages. |
|
if ( ! is_singular() ) { |
|
$classes[] = 'hfeed'; |
|
} |
|
|
|
return $classes; |
|
}
|
|
|