| 1 |
<?php |
| 2 |
$activate = array( |
| 3 |
'sidebar-main' => array( |
| 4 |
'search-1', |
| 5 |
'recent-posts-1', |
| 6 |
'archives-1', |
| 7 |
), |
| 8 |
'footer-sidebar-one' => array( |
| 9 |
'text-1', |
| 10 |
), |
| 11 |
'footer-sidebar-two' => array( |
| 12 |
'categories-1', |
| 13 |
), |
| 14 |
'footer-sidebar-three' => array( |
| 15 |
'archives-1', |
| 16 |
), |
| 17 |
'footer-sidebar-four' => array( |
| 18 |
'search-1', |
| 19 |
) |
| 20 |
); |
| 21 |
/* the default titles will appear */ |
| 22 |
update_option('widget_text', array( |
| 23 |
1 => array('title' => 'Quick contact info', |
| 24 |
'text'=>'<p><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Lorem ipsum dolor sit amet, the administration of justice, I may hear, finally, be expanded on, say, a certain pro cu neglegentur. </font><font style="vertical-align: inherit;">Mazim.Unusual or something.</font></font></p> |
| 25 |
<address><i class="fa fa-map-marker"></i>2130 Fulton Street, San Francisco<br> |
| 26 |
<i class="fa fa-envelope-o"></i><a href="mailto:support@test.com">support@test.com</a><br> |
| 27 |
<i class="fa fa-phone"></i><a href="tel:+(15) 718-999-3939">+(15) 94117-1080</a></address> |
| 28 |
'), |
| 29 |
2 => array('title' => 'Recent Posts'), |
| 30 |
3 => array('title' => 'Categories'), |
| 31 |
)); |
| 32 |
update_option('widget_categories', array( |
| 33 |
1 => array('title' => 'Categories'), |
| 34 |
2 => array('title' => 'Categories'))); |
| 35 |
|
| 36 |
update_option('widget_archives', array( |
| 37 |
1 => array('title' => 'Archives'), |
| 38 |
2 => array('title' => 'Archives'))); |
| 39 |
|
| 40 |
update_option('widget_search', array( |
| 41 |
1 => array('title' => 'Search'), |
| 42 |
2 => array('title' => 'Search'))); |
| 43 |
|
| 44 |
update_option('sidebars_widgets', $activate); |
| 45 |
?> |