我正在尝试在genesis子主题中添加bootstrap的列类。我无法想出如何将这些类添加到HTML中。
答案 0 :(得分:0)
花了一些时间后,我想出来了。
在函数add中,
//* Add custom classes to posts
add_filter( 'genesis_attr_entry', 'atp_post_class' );
function atp_post_class( $attributes ) {
$attributes['class'] = 'col-md-4 ' . join( ' ', get_post_class() );
if ( ! is_main_query() && ! genesis_is_blog_template() ) {
return $attributes;
}
$attributes['itemscope'] = true;
$attributes['itemtype'] = 'http://schema.org/CreativeWork';
return $attributes;
}