![]() Server : LiteSpeed System : Linux premium84.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : claqxcrl ( 523) PHP Version : 8.1.32 Disable Function : NONE Directory : /home/claqxcrl/askdragao.com/wp-content/themes/seos-football/inc/ |
<?php /** * Custom functions that act independently of the theme templates */ /** * Adds custom classes to the array of body classes. * * @param array $ap_classes Classes for the body element. * @return array */ function seos_football_body_classes( $ap_classes ) { // Adds a class of group-blog to blogs with more than 1 published author. if ( is_multi_author() ) { $ap_classes[] = 'group-blog'; } // Adds a class of hfeed to non-singular pages. if ( ! is_singular() ) { $ap_classes[] = 'hfeed'; } return $ap_classes; } add_filter( 'body_class', 'seos_football_body_classes' );