flatpress/fp-defaults/widgets.conf.php
Fraenkiman 86cb0930ca Reduce RSS and Atom Feed plugin to the widget
- remove the RSS and Atom buttons in the header template
- Activates the plugin by default and places the widget in the menu column
2024-02-17 00:31:24 +01:00

37 lines
556 B
PHP
Executable File

<?php
$fp_widgets = array (
// to disable put // or # before the plugin name
// remove it to enable :)
'top' => array (
// (no widgets)
),
// Left side widgets. Put here blocks which will appear
// on the left side
// (Theme dependant)
'left' => array (
// (no widgets)
),
// Right side widgets
'right' => array (
'adminarea',
'blockparser:menu',
'categories',
'archives',
//'calendar', // quite time consuming, not really recommended
'lastentries',
// 'lastcomments',
'searchbox',
'feed'
),
'bottom' => array (
// (no widgets)
),
);
?>