Pagelines welcome features

[edit] Please Note

These docs are now deprecated, we have a new Support area located here

Revision as of 18:13, 8 April 2012 by Cais (Talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Filter

pagelines_welcome_features is used by get_welcome_features to return an array of the theme features on the theme Welcome page.

Usage

 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;
}
?>