Pagelines welcome plugins

[edit] Please Note

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

Filter

pagelines_welcome_plugins will filter the display of the plugins listed on the main welcome page found under PageLines > Settings.

Usage

Example

Say you want to remove the list (only) of the default plugins PageLines has added advanced support for. Just add this to your 'functions.php' template file in your (Child-)Theme:

Now, instead of simply blanking out the default plugins you want to replace them with a list of plugins you have enhanced your theme for. Use this code for a starting point:

 array(
      'name' => __( 'My Plugin' ),
      'url' => 'http://wordpress.org/extend/plugins/my-plugin/',
      'desc' => __( 'My Plugin is really cool to use with my theme' )
    )
  );
  return $plugins;
}
?>

NB: my_plugin is just a placeholder name, use the appropriate name and references for the actual plugins.

Source File

pagelines_welcome_plugins is defined in get_welcome_plugins() which is located in admin/class.welcome.php