'top sidebar',
'before_widget'=>'
',
'after_widget' => "
\n",
'before_title' => '\n",
));
register_sidebar(array(
'name'=>'bottom sidebar',
'before_widget'=>'',
'after_widget' => "
\n",
'before_title' => '\n",
));
}
/*
* Select jQuery Api
*/
function register_scripts() {
$options = get_option('azen_option');
if(!is_admin()) {
if(function_exists('wp_deregister_script') && $options['gala']) {
wp_deregister_script('jquery');
wp_register_script('jquery','http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js',false,'1.3.2');
}
}
wp_register_script('animation', get_bloginfo('template_url').'/js/animation.js', false,false);
wp_register_script('comment', get_bloginfo('template_url').'/js/comment.js', false,false);
wp_register_script('scrollTo', get_bloginfo('template_url').'/js/jquery.scrollTo-min.js', false,false);
wp_enqueue_script('jquery');
wp_enqueue_script('animation');
wp_enqueue_script('scrollTo');
}
add_action('wp_print_scripts','register_scripts',10);
/*
* custome comments
*/
function custom_comments($comment,$args,$depth){
if(!$args['newComment']){
$GLOBALS['comment'] = $comment;
}
if($comment){
?>
comment_ID)?>
id="li-comment-">
1),'1');
exit;
}
if(!is_admin()){
add_filter('comment_post_redirect','commentAjaxPost',10,2);
}
?>