_bbp_has_replies_where( string $where = '',  $query = false )

Used by bbp_has_replies() to add the lead topic post to the posts loop


Description Description

This function filters the ‘post_where’ of the WP_Query, and changes the query to include both the topic AND its children in the same loop.


Parameters Parameters

$where

(Optional)

Default value: ''


Top ↑

Return Return

(string)


Top ↑

Source Source

File: includes/replies/functions.php

2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
function _bbp_has_replies_where( $where = '', $query = false ) {
 
    /** Bail ******************************************************************/
 
    // Bail if the sky is falling
    if ( empty( $where ) || empty( $query ) ) {
        return $where;
    }
 
    // Bail if no post_parent to replace
    if ( ! is_numeric( $query->get( 'post_parent' ) ) ) {
        return $where;
    }
 
    // Bail if not a topic and reply query
    if ( array( bbp_get_topic_post_type(), bbp_get_reply_post_type() ) !== $query->get( 'post_type' ) ) {
        return $where;
    }
 
    // Bail if including specific post ID's
    if ( $query->get( 'post__in' ) ) {
        return $where;
    }
 
    /** Proceed ***************************************************************/
 
    // Table name for posts
    $table_name = bbp_db()->prefix . 'posts';
 
    // Get the topic ID from the post_parent, set in bbp_has_replies()
    $topic_id   = bbp_get_topic_id( $query->get( 'post_parent' ) );
 
    // The texts to search for
    $search     = array(
        "FROM {$table_name} " ,
        "WHERE 1=1  AND {$table_name}.post_parent = {$topic_id}",
        ") AND {$table_name}.post_parent = {$topic_id}"
    );
 
    // The texts to replace them with
    $replace     = array(
        $search[0] . "FORCE INDEX (PRIMARY, post_parent) " ,
        "WHERE 1=1 AND ({$table_name}.ID = {$topic_id} OR {$table_name}.post_parent = {$topic_id})",
        ") AND ({$table_name}.ID = {$topic_id} OR {$table_name}.post_parent = {$topic_id})"
    );
 
    // Try to replace the search text with the replacement
    $new_where = str_replace( $search, $replace, $where );
    if ( ! empty( $new_where ) ) {
        $where = $new_where;
    }
 
    return $where;
}

Top ↑

Changelog Changelog

Changelog
Version Description
2.1.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.