bbp_get_reply_content

bbp_get_reply_content

Hook Type: filter
See hook in action

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_get_reply_content') is found 2 times:

  • /includes/admin/classes/class-bbp-topic-replies-list-table.php line 154
    			$actions         = array_reverse( $actions );
    		}
    
    		// Filter the reply content
    		$reply_content = apply_filters( 'bbp_get_reply_content', $item->post_content, $item->ID );
    		$reply_actions = $this->row_actions( $actions );
    
    		// Return content & actions
    		return $reply_content . $reply_actions;
    	}
    
    
  • /includes/replies/template.php line 587
     
    		$content = get_post_field( 'post_content', $reply_id );
    
    		// Filter & return
    		return apply_filters( 'bbp_get_reply_content', $content, $reply_id );
    	}
    
    /**
     * Output the excerpt of the reply
     *
     * @since 2.0.0 bbPress (r2751)
    

See this hook used in plugins: