pagelines_welcome_features is used by get_welcome_features to return an array of the theme features on the theme Welcome page.
array(
'name' => __( 'My First Feature', 'my-textdomain' ),
'desc' => __( 'This the description for My First Feature', 'my-textdomain' ),
'class' => __( 'feature_dynamic' ), /* CSS class - borrowed for example purposes */
'icon' => '',
),
);
return $my_features;
}
?>