-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions.php
35 lines (25 loc) · 882 Bytes
/
functions.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
define( 'TEMPPATH', get_bloginfo('stylesheet_directory') );
define( 'IMG', TEMPPATH. "/img/" );
define( 'CSS', TEMPPATH. "/css/" );
define( 'JS', TEMPPATH. "/js/" );
add_theme_support('nav-menus');
if ( function_exists('register_nav_menus') ) {
register_nav_menus(
array(
'main' => 'Main Nav'
)
);
}
if ( function_exists( 'register_sidebar' ) ) {
register_sidebar( array (
'name' => __( 'Primary Sidebar', 'primary-sidebar' ),
'id' => 'primary-widget-area',
'description' => __( 'The primary widget area', 'dir' ),
'before_widget' => '<div class="widget">',
'after_widget' => "</div>",
'before_title' => '<h3 class="widget-title">',
'after_title' => '</h3>',
) );
}
?>