bbp_get_topic_caps()

Return topic capabilities


Description Description


Return Return

(array) Topic capabilities


Top ↑

Source Source

File: includes/topics/capabilities.php

function bbp_get_topic_caps() {

	// Filter & return
	return (array) apply_filters( 'bbp_get_topic_caps', array(
		'edit_posts'          => 'edit_topics',
		'edit_others_posts'   => 'edit_others_topics',
		'publish_posts'       => 'publish_topics',
		'read_private_posts'  => 'read_private_topics',
		'read_hidden_posts'   => 'read_hidden_topics',
		'delete_posts'        => 'delete_topics',
		'delete_others_posts' => 'delete_others_topics'
	) );
}

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.