HEX
Server: Apache
System: Linux srv13.cpanelhost.cl 3.10.0-962.3.2.lve1.5.38.el7.x86_64 #1 SMP Thu Jun 18 05:28:41 EDT 2020 x86_64
User: cca63905 (4205)
PHP: 7.3.20
Disabled: NONE
Upload Files
File: //proc/self/root/home5/cca63905/.trash/wp-content/themes/accesspress-store/inc/core/extras.php
<?php
/**
 * Custom functions that act independently of the theme templates
 *
 * Eventually, some of the functionality here could be replaced by core features
 *
 * @package AccessPress Store
 */

/**
 * Adds custom classes to the array of body classes.
 *
 * @param array $classes Classes for the body element.
 * @return array
 */
function accesspress_store_body_classes( $classes ) {
	// Adds a class of group-blog to blogs with more than 1 published author.
	if ( is_multi_author() ) {
		$classes[] = 'group-blog';
	}

	$widget_title_style = esc_attr( get_theme_mod( 'accesspress_widget_layout_type', 'title_style_two' ) );

	if($widget_title_style == 'title_style_two'){
		$classes[] = 'apwidget_title';
	}

	/**
	 * Add Class for WebPage Layout
	*/
	$classes[]= esc_attr( get_theme_mod('accesspress_webpage_layout') );

	return $classes;
}
add_filter( 'body_class', 'accesspress_store_body_classes' );