1

手动更新我的 wordpress 安装后出现此错误:

解析错误:语法错误,意外的 T_FUNCTION

这是导致错误的代码:

function paginate_links($args = ''){
$defaults = array(
    'base' => '%_%', // http://example.com/all_posts.php%_% : %_% is replaced by format (below)
    'format' => '?page=%#%', // ?page=%#% : %#% is replaced by the page number
    'total' => 1,
    'current' => 0,
    'show_all' => false,
    'prev_next' => true,
    'prev_text' => __('« Previous'),
    'next_text' => __('Next »'),
    'end_size' => 1,
    'mid_size' => 2,
    'type' => 'plain',
    'add_args' => false, // array of query args to add
    'add_fragment' => '');
}

任何人都可以帮忙吗?

4

1 回答 1

0

你说的手动是什么意思?你没有使用内置更新程序?如果没有,您是否运行了更新脚本?

  1. wp-admin/update.php
  2. wp-admin/upgrade.php
  3. wp-admin/update-core.php

一个一个地做,看看它是否固定在两者之间。

于 2012-12-14T09:36:05.637 回答