4 * Array of published types
6 * Basically RSS2 & ATOM, but this allows you to keep only the one you want.
8 $fp_conf[ 'PublishedTypes' ] = array( 'RSS2', 'ATOM' );
11 * Whether to stop Vanilla processing or not when displaying a feed.
13 * True will save some resources, while
14 * False will allow you to use SimpleCache.
16 $fp_conf[ 'ExitAfterFeed' ] = false;
19 * Array of stylesheet attributes
21 * Add attributes with values if you want to format your feed a bit with css or
22 * xsl, leave empty arrays if you don't need formatting.
24 * 'StyleSheet_' is the prefix, provide arrays for the relevant feed types you
25 * want (RSS2 or ATOM). See commented code below for some examples.
27 * IMPORTANT: You'll have to provide the files you link to!!!
29 * NOTE: You can use several calls to $fp_conf[ 'StyleSheet_<type>' ][] for
30 * use of several style sheets.
32 $fp_conf[ 'StyleSheet_RSS2' ][] = array();
33 $fp_conf[ 'StyleSheet_ATOM' ][] = array();
36 // to add < ?xml-stylesheet href="/rss.css" type="text/css"? >, use
37 $fp_conf[ 'StyleSheet_RSS2' ][] = array(
39 'type' => 'text/css' );
42 // < ?xml-stylesheet type="text/xsl" href="style.xsl" media="screen"? >
43 // < ?xml-stylesheet href="http://www.site.com/atom.css" type="text/css"? >, use
44 $fp_conf[ 'StyleSheet_ATOM' ][] = array(
46 'href' => 'style.xsl',
48 $fp_conf[ 'StyleSheet_ATOM' ][] = array(
49 'href' => 'http://www.site.com/atom.css',
50 'type' => 'text/css' );