
- remove the RSS and Atom buttons in the header template - Activates the plugin by default and places the widget in the menu column
37 lines
556 B
PHP
Executable File
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)
|
|
),
|
|
);
|
|
?>
|