Hi,
I’m trying to build a set of options for the theme to allow the user to set various things from within WordPress by using Advanced Custom Fields. One of these options will be the column widths.
So I’m trying to start with set the widths from within custom.php like this (the small values are just so I can see it do something & I will change these later)…
add_filter('roots_main_class', 'roots_main_class_adjust');
function roots_main_class_adjust($class) {
global $class;
if (roots_display_sidebar()) {
// Classes on pages with the sidebar
$class = 'col-sm-1';
} else {
// Classes on full width pages
$class = 'col-sm-1';
}
return $class;
}
I will call the custom fields values, if I just get this to work to sart with.
I expect I have missed something obvious here, but I can’t get it to do anything. Can someone help me?