Skip to:
Content

bbPress.org


Ignore:
Timestamp:
06/19/2017 04:29:43 AM (9 years ago)
Author:
johnjamesjacoby
Message:

Better 404 handling:

  • Introduce bbp_is_404 query var, and set this in places where the default 404 condition needs to be overridden
  • Introduce bbp_set_200() for cases where a default of 404 needs to be set to a 200
  • Introduce bbp_get_wp_query() helper for getting the $wp_query global
  • Update bbp_set_404() to accept a $query parameter to make passing the query around easier
  • Update child-ids queries to use the last_changed cache to reduce the amount of cache churn when cleaning

Fixes #3047. See #1973.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/core/theme-compat.php

    r6573 r6583  
    395395            'is_single'             => false,
    396396            'is_archive'            => false,
    397             'is_tax'                => false,
     397            'is_tax'                => false
    398398        ), 'theme_compat_reset_post' );
    399399    } else {
     
    428428            'is_single'             => false,
    429429            'is_archive'            => false,
    430             'is_tax'                => false,
     430            'is_tax'                => false
    431431        ), 'theme_compat_reset_post' );
    432432    }
     
    458458    // Clean up the dummy post
    459459    unset( $dummy );
    460 
    461     /**
    462      * Force the header back to 200 status if not a deliberate 404
    463      *
    464      * @see https://bbpress.trac.wordpress.org/ticket/1973
    465      */
    466     if ( ! $wp_query->is_404() ) {
    467         status_header( 200 );
    468     }
    469460
    470461    // If we are resetting a post, we are in theme compat
Note: See TracChangeset for help on using the changeset viewer.