PluginProbe
Arile Extra / 2.5
Arile Extra v2.5
8.6 8.5 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.1 2.2 2.3 2.4 2.5 2.6 2.7 2.8 2.9 3.0 3.1 3.2 3.3 3.4 3.5 3.6 3.7 3.8 All 83 releases
arile-extra / inc / widgets / widget.php

widget.php in Arile Extra 2.5, at inc/widgets/widget.php

45 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 ?>