• Resolved techsmurfy

    (@techsmurfy)


    I’m getting a suppressed notice that _usort_terms_by_ID is deprecated since 4.7.0. Use wp_list_sort instead.

Viewing 2 replies - 1 through 2 (of 2 total)
  • In single-category-permalink.php change on line 72
    usort( $cats, ‘_usort_terms_by_ID’ ); // order by ID
    by
    usort( $cats, ‘wp_list_sort’ ); // order by ID
    seems to solve this notice

    Thread Starter techsmurfy

    (@techsmurfy)

    Thanks, appreciated!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘PHP Error: _usort_terms_by_ID deprecated’ is closed to new replies.