BBP_Replies_Admin::column_headers( array $columns )

Manage the column headers for the replies page


Description Description


Parameters Parameters

$columns

(Required) The columns


Top ↑

Return Return

(array) $columns bbPress reply columns


Top ↑

Source Source

File: includes/admin/replies.php

	public function column_headers( $columns ) {
		$columns = array(
			'cb'                => '<input type="checkbox" />',
			'title'             => esc_html__( 'Title',   'bbpress' ),
			'bbp_reply_forum'   => esc_html__( 'Forum',   'bbpress' ),
			'bbp_reply_topic'   => esc_html__( 'Topic',   'bbpress' ),
			'bbp_reply_author'  => esc_html__( 'Author',  'bbpress' ),
			'bbp_reply_created' => esc_html__( 'Created', 'bbpress' ),
		);

		// Filter & return
		return apply_filters( 'bbp_admin_replies_column_headers', $columns );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
2.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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