При зміні шаблону виникла проблема
При зміні шаблону виникла проблема. Тепер видає наступне повідомлення:Parse error: syntax error, unexpected '}' in /...../wp-content/themes/toonewsy/ on line 1Бекапу блогу немає.Знизу вміст файлу functions.phpБуду вдячний за допомогу. <?php function navigation_title() { if (is_category()) { single_cat_title('Статті з мітками '); } if (is_tag()) { single_tag_title('Статті у категоріях '); } if (is_year()) { echo 'Статті від ' . get_the_time('Y'); } elseif (is_month()) { echo 'Статті від ' . get_the_time('F Y'); } elseif (is_date()) { echo 'Статті від ' . get_the_time('F j, Y'); } if (is_author()) { ?> Статті від <?php wp_title(' '); } if (is_search()) { echo 'Результати пошуку для "' . wp_specialchars($s, 1) . '"'; } if (is_404()) { echo 'Помилка!'; }}if ( function_exists('register_sidebar') ) register_sidebar(array('name'=>'Sidebar primary', 'before_widget' => '<li id="%1$s" class="widget %2$s">', 'after_widget' => '', 'before_title' => '<h2 class="widgettitle">', 'after_title' => '</h2>', )); register_sidebar(array('name'=>'Sidebar secondary', 'before_widget' => '<li id="%1$s" class="widget %2$s">', 'after_widget' => '', 'before_title' => '<h2 class="widgettitle">', 'after_title' => '</h2>', ));function list_pings($comment, $args, $depth) { $GLOBALS['comment'] = $comment; ?> <li <?php comment_class(); ?> id="comment-<?php comment_ID(); ?>"><div id="div-comment-<?php comment_ID(); ?>"> <?php echo get_avatar($comment, $size = '48'); ?> <div class="author comment-author vcard"><?php comment_author_link() ?></div> <div class="meta comment-meta commentmetadata">На " title="Пермалінк на цю відповідь"><?php comment_date('F j, Y'); echo " о "; comment_time(); ?><?php edit_comment_link('Редагувати',' / ',''); ?></div> </div><?php } // end list_pings()function list_comments($comment, $args, $depth) { $GLOBALS['comment'] = $comment; ?> <li <?php comment_class(); ?> id="comment-<?php comment_ID(); ?>"><div id="div-comment-<?php comment_ID(); ?>"> <?php echo get_avatar($comment, $size = '48'); ?> <div class="author comment-author vcard"><?php comment_author_link() ?></div> <div class="meta comment-meta commentmetadata">На " title="Пермалінк на цю відповідь"><?php comment_date('F j, Y'); echo " о "; comment_time(); ?><?php edit_comment_link('Редагувати',' / ',''); ?></div> <div class="content"> <?php if ($comment->comment_approved == '0') : ?>Ваш коментар очікує модерації.<?php endif; ?> <?php comment_text(); ?> <p class="reply"><?php comment_reply_link(array_merge( $args, array('add_below' => 'div-comment', 'depth' => $depth, 'max_depth' => $args['max_depth']))) ?></p> </div> </div><?php } // end list_comments()?>
Від hvmvital 12-01-2010 10:17:21
Guest