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' => '');
}
誰でも助けることができますか?