使用 Genesis x Wordpress 删除 `status-publish`

Remove `status-publish` with Genesis x Wordpress

创建了 template.php 并想删除

<article class="post-11 page type-page status-publish entry" itemscope itemtype="http://schema.org/CreativeWork">

这是我的 body.. 我想有一个 Genesis 函数但是我无法在这里或通过 google..

非常感谢任何帮助..

吉姆

    add_filter( 'genesis_attr_entry', 'change_my_attributes_entry' );
/**
 * Remove a class for entry element.
 *
 * 
 *
 * @param array $attributes Existing attributes for entry element.
 * @return array Amended attributes for entry element.
 */
function change_my_attributes_entry( $attributes ) {
    $classes= get_post_class();
    if( ( $key = array_search( 'status-publish', $classes ) ) !== false )
        unset( $classes[$key] );
    $attributes['class'] = join( ' ', $classes );


    return $attributes;

}