Viewing 7 replies - 1 through 7 (of 7 total)
  • I am getting the same warning message after upgrading to 4.1. Seems something is amiss with changes in WordPress 4.1 and CPT-onomies.

    I’m trying to recreate this error but am having no luck. Can you share with me what your query looks like on the pages that are throwing the error?

    Thanks!

    Nevermind. I think I see the issue. Thanks!

    I’ve fixed it. An update should be out soon.

    In the manager file, find line 318 and replace:

    $taxonomy = $this_query[ 'taxonomy' ];
    
    if ( ! taxonomy_exists( $taxonomy )  )
       continue;

    with:

    // Get the taxonomy
    $taxonomy = isset( $this_query[ 'taxonomy' ] ) ? $this_query[ 'taxonomy' ] : NULL;
    
    // Make sure the taxonomy exists
    if ( ! $taxonomy || ! taxonomy_exists( $taxonomy ) )
       continue;

    I just pushed out an update that hopefully fixes this for you. If you’re still having this issue after you upgrade to version 1.3.2, please let me know.

    Thanks!

    This issue has been fixed, thanks.

    Awesome! Thanks!

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Error with WordPress update’ is closed to new replies.