Support

Account

Home Forums General Issues Adding custom CSS class in body_class() Reply To: Adding custom CSS class in body_class()

  • This should work to add the value

    
    function add_acf_body_class($class) {
        $value = get_field('page_layout');
        $class[] = $value;
        return $class;
    }
    add_filter('body_class', 'add_acf_body_class');
    

    I don’t see any reason why it wouldn’t. What kind of field is "page_layout" is it just a select field or is it a sub field of of something else?