[ Index ]

PHP Cross Reference of BBPress

title

Body

[close]

/src/includes/replies/ -> template.php (summary)

bbPress Reply Template Tags

File Size: 2761 lines (81 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 107 functions

  bbp_reply_post_type()
  bbp_get_reply_post_type()
  bbp_get_reply_post_type_labels()
  bbp_get_reply_post_type_rewrite()
  bbp_get_reply_post_type_supports()
  bbp_has_replies()
  bbp_replies()
  bbp_the_reply()
  bbp_reply_id()
  bbp_get_reply_id()
  bbp_get_reply()
  bbp_reply_permalink()
  bbp_get_reply_permalink()
  bbp_reply_url()
  bbp_get_reply_url()
  bbp_reply_title()
  bbp_get_reply_title()
  bbp_get_reply_title_fallback()
  bbp_reply_content()
  bbp_get_reply_content()
  bbp_reply_excerpt()
  bbp_get_reply_excerpt()
  bbp_reply_post_date()
  bbp_get_reply_post_date()
  bbp_reply_content_append_revisions()
  bbp_reply_revision_log()
  bbp_get_reply_revision_log()
  bbp_get_reply_raw_revision_log()
  bbp_get_reply_revisions()
  bbp_get_reply_revision_count()
  bbp_reply_status()
  bbp_get_reply_status()
  bbp_is_reply_public()
  bbp_is_reply_published()
  bbp_is_reply_spam()
  bbp_is_reply_trash()
  bbp_is_reply_pending()
  bbp_is_reply_private()
  bbp_is_reply_anonymous()
  bbp_reply_author()
  bbp_get_reply_author()
  bbp_reply_author_id()
  bbp_get_reply_author_id()
  bbp_reply_author_display_name()
  bbp_get_reply_author_display_name()
  bbp_reply_author_avatar()
  bbp_get_reply_author_avatar()
  bbp_reply_author_link()
  bbp_get_reply_author_link()
  bbp_reply_author_url()
  bbp_get_reply_author_url()
  bbp_reply_author_email()
  bbp_get_reply_author_email()
  bbp_reply_author_role()
  bbp_get_reply_author_role()
  bbp_reply_topic_title()
  bbp_get_reply_topic_title()
  bbp_reply_topic_id()
  bbp_get_reply_topic_id()
  bbp_reply_forum_id()
  bbp_get_reply_forum_id()
  bbp_reply_ancestor_id()
  bbp_get_reply_ancestor_id()
  bbp_reply_to()
  bbp_get_reply_to()
  bbp_reply_to_link()
  bbp_get_reply_to_link()
  bbp_cancel_reply_to_link()
  bbp_get_cancel_reply_to_link()
  bbp_reply_position()
  bbp_get_reply_position()
  bbp_reply_admin_links()
  bbp_get_reply_admin_links()
  bbp_reply_edit_link()
  bbp_get_reply_edit_link()
  bbp_reply_edit_url()
  bbp_get_reply_edit_url()
  bbp_reply_trash_link()
  bbp_get_reply_trash_link()
  bbp_reply_spam_link()
  bbp_get_reply_spam_link()
  bbp_reply_move_link()
  bbp_get_reply_move_link()
  bbp_topic_split_link()
  bbp_get_topic_split_link()
  bbp_reply_approve_link()
  bbp_get_reply_approve_link()
  bbp_reply_class()
  bbp_get_reply_class()
  bbp_get_replies_pagination_base()
  bbp_topic_pagination_count()
  bbp_get_topic_pagination_count()
  bbp_topic_pagination_links()
  bbp_get_topic_pagination_links()
  bbp_form_reply_content()
  bbp_get_form_reply_content()
  bbp_form_reply_to()
  bbp_get_form_reply_to()
  bbp_reply_to_dropdown()
  bbp_get_reply_to_dropdown()
  bbp_form_reply_log_edit()
  bbp_get_form_reply_log_edit()
  bbp_form_reply_edit_reason()
  bbp_get_form_reply_edit_reason()
  bbp_form_reply_status_dropdown()
  bbp_get_form_reply_status_dropdown()
  bbp_is_reply_form_post_request()

Functions
Functions that are not part of a class:

bbp_reply_post_type()   X-Ref
Return the unique id of the custom post type for replies

since: 2.0.0 bbPress (r2857)

bbp_get_reply_post_type()   X-Ref
Return the unique id of the custom post type for replies

return: string The unique reply post type id
since: 2.0.0 bbPress (r2857)

bbp_get_reply_post_type_labels()   X-Ref
Return array of labels used by the reply post type

return: array
since: 2.5.0 bbPress (r5129)

bbp_get_reply_post_type_rewrite()   X-Ref
Return array of reply post type rewrite settings

return: array
since: 2.5.0 bbPress (r5129)

bbp_get_reply_post_type_supports()   X-Ref
Return array of features the reply post type supports

return: array
since: 2.5.0 bbPress (r5129)

bbp_has_replies( $args = array()   X-Ref
The main reply loop. WordPress makes this easy for us

return: object Multidimensional array of reply information
param: array $args All the arguments supported by {@link WP_Query}
since: 2.0.0 bbPress (r2553)

bbp_replies()   X-Ref
Whether there are more replies available in the loop

return: object Replies information
since: 2.0.0 bbPress (r2553)

bbp_the_reply()   X-Ref
Loads up the current reply in the loop

return: object Reply information
since: 2.0.0 bbPress (r2553)

bbp_reply_id( $reply_id = 0 )   X-Ref
Output reply id

param: $reply_id Optional. Used to check emptiness
since: 2.0.0 bbPress (r2553)

bbp_get_reply_id( $reply_id = 0 )   X-Ref
Return the id of the reply in a replies loop

return: int The reply id
param: $reply_id Optional. Used to check emptiness
since: 2.0.0 bbPress (r2553)

bbp_get_reply( $reply, $output = OBJECT, $filter = 'raw' )   X-Ref
Gets a reply

return: mixed Null if error or reply (in specified form) if success
param: int|object $reply reply id or reply object
param: string $output Optional. OBJECT, ARRAY_A, or ARRAY_N. Default = OBJECT
param: string $filter Optional Sanitation filter. See {@link sanitize_post()}
since: 2.0.0 bbPress (r2787)

bbp_reply_permalink( $reply_id = 0 )   X-Ref
Output the link to the reply in the reply loop

param: int $reply_id Optional. Reply id
since: 2.0.0 bbPress (r2553)

bbp_get_reply_permalink( $reply_id = 0 )   X-Ref
Return the link to the reply

return: string Permanent link to reply
param: int $reply_id Optional. Reply id
since: 2.0.0 bbPress (r2553)

bbp_reply_url( $reply_id = 0 )   X-Ref
Output the paginated url to the reply in the reply loop

param: int $reply_id Optional. Reply id
since: 2.0.0 bbPress (r2679)

bbp_get_reply_url( $reply_id = 0, $redirect_to = '' )   X-Ref
Return the paginated url to the reply in the reply loop

return: string Link to reply relative to paginated topic
param: int $reply_id Optional. Reply id
param: string $redirect_to Optional. Pass a redirect value for use with
since: 2.0.0 bbPress (r2679)

bbp_reply_title( $reply_id = 0 )   X-Ref
Output the title of the reply

param: int $reply_id Optional. Reply id
since: 2.0.0 bbPress (r2553)

bbp_get_reply_title( $reply_id = 0 )   X-Ref
Return the title of the reply

return: string Title of reply
param: int $reply_id Optional. Reply id
since: 2.0.0 bbPress (r2553)

bbp_get_reply_title_fallback( $post_title = '', $post_id = 0 )   X-Ref
Get empty reply title fallback.

return: string Title of reply
param: string $post_title Required. Reply Title
param: int $post_id Required. Reply ID
since: 2.5.0 bbPress (r5177)

bbp_reply_content( $reply_id = 0 )   X-Ref
Output the content of the reply

param: int $reply_id Optional. reply id
since: 2.0.0 bbPress (r2553)

bbp_get_reply_content( $reply_id = 0 )   X-Ref
Return the content of the reply

return: string Content of the reply
param: int $reply_id Optional. reply id
since: 2.0.0 bbPress (r2780)

bbp_reply_excerpt( $reply_id = 0, $length = 100 )   X-Ref
Output the excerpt of the reply

param: int $reply_id Optional. Reply id
param: int $length Optional. Length of the excerpt. Defaults to 100 letters
since: 2.0.0 bbPress (r2751)

bbp_get_reply_excerpt( $reply_id = 0, $length = 100 )   X-Ref
Return the excerpt of the reply

return: string Reply Excerpt
param: int $reply_id Optional. Reply id
param: int $length Optional. Length of the excerpt. Defaults to 100
since: 2.0.0 bbPress (r2751)

bbp_reply_post_date( $reply_id = 0, $humanize = false, $gmt = false )   X-Ref
Output the post date and time of a reply

param: int $reply_id Optional. Reply id.
param: bool $humanize Optional. Humanize output using time_since
param: bool $gmt Optional. Use GMT
since: 2.2.0 bbPress (r4155)

bbp_get_reply_post_date( $reply_id = 0, $humanize = false, $gmt = false )   X-Ref
Return the post date and time of a reply

return: string
param: int $reply_id Optional. Reply id.
param: bool $humanize Optional. Humanize output using time_since
param: bool $gmt Optional. Use GMT
since: 2.2.0 bbPress (r4155)

bbp_reply_content_append_revisions( $content = '', $reply_id = 0 )   X-Ref
Append revisions to the reply content

return: string Content with the revisions appended
param: string $content Optional. Content to which we need to append the revisions to
param: int $reply_id Optional. Reply id
since: 2.0.0 bbPress (r2782)

bbp_reply_revision_log( $reply_id = 0 )   X-Ref
Output the revision log of the reply

param: int $reply_id Optional. Reply id
since: 2.0.0 bbPress (r2782)

bbp_get_reply_revision_log( $reply_id = 0 )   X-Ref
Return the formatted revision log of the reply

return: string Revision log of the reply
param: int $reply_id Optional. Reply id
since: 2.0.0 bbPress (r2782)

bbp_get_reply_raw_revision_log( $reply_id = 0 )   X-Ref
Return the raw revision log of the reply

return: string Raw revision log of the reply
param: int $reply_id Optional. Reply id
since: 2.0.0 bbPress (r2782)

bbp_get_reply_revisions( $reply_id = 0 )   X-Ref
Return the revisions of the reply

return: string reply revisions
param: int $reply_id Optional. Reply id
since: 2.0.0 bbPress (r2782)

bbp_get_reply_revision_count( $reply_id = 0, $integer = false )   X-Ref
Return the revision count of the reply

return: string reply revision count
param: int $reply_id Optional. Reply id
param: boolean $integer Optional. Whether or not to format the result
since: 2.0.0 bbPress (r2782)

bbp_reply_status( $reply_id = 0 )   X-Ref
Output the status of the reply

param: int $reply_id Optional. Reply id
since: 2.0.0 bbPress (r2667)

bbp_get_reply_status( $reply_id = 0 )   X-Ref
Return the status of the reply

return: string Status of reply
param: int $reply_id Optional. Reply id
since: 2.0.0 bbPress (r2667)

bbp_is_reply_public( $reply_id = 0 )   X-Ref
Is the reply publicly viewable?

See bbp_get_public_reply_statuses() for public statuses.

return: bool True if public, false if not.
param: int $reply_id Optional. Reply id
since: 2.6.0 bbPress (r6391)

bbp_is_reply_published( $reply_id = 0 )   X-Ref
Is the reply not spam or deleted?

return: bool True if published, false if not.
param: int $reply_id Optional. Topic id
since: 2.0.0 bbPress (r3496)
since: 2.6.0 bbPress (r6922) Returns false if topic is also not published

bbp_is_reply_spam( $reply_id = 0 )   X-Ref
Is the reply marked as spam?

return: bool True if spam, false if not.
param: int $reply_id Optional. Reply id
since: 2.0.0 bbPress (r2740)

bbp_is_reply_trash( $reply_id = 0 )   X-Ref
Is the reply trashed?

return: bool True if spam, false if not.
param: int $reply_id Optional. Topic id
since: 2.0.0 bbPress (r2884)

bbp_is_reply_pending( $reply_id = 0 )   X-Ref
Is the reply pending?

return: bool True if pending, false if not.
param: int $reply_id Optional. Topic id
since: 2.6.0 bbPress (r5507)

bbp_is_reply_private( $reply_id = 0 )   X-Ref
Is the reply private?

return: bool True if private, false if not.
param: int $reply_id Optional. Topic id
since: 2.6.0 bbPress (r5507)

bbp_is_reply_anonymous( $reply_id = 0 )   X-Ref
Is the reply by an anonymous user?

return: bool True if the post is by an anonymous user, false if not.
param: int $reply_id Optional. Reply id
since: 2.0.0 bbPress (r2753)

bbp_reply_author( $reply_id = 0 )   X-Ref
Deprecated. Use bbp_reply_author_display_name() instead.

Output the author of the reply

param: int $reply_id Optional. Reply id
since: 2.0.0 bbPress (r2667)

bbp_get_reply_author( $reply_id = 0 )   X-Ref
Deprecated. Use bbp_get_reply_author_display_name() instead.

Return the author of the reply

return: string Author of reply
param: int $reply_id Optional. Reply id
since: 2.0.0 bbPress (r2667)

bbp_reply_author_id( $reply_id = 0 )   X-Ref
Output the author ID of the reply

param: int $reply_id Optional. Reply id
since: 2.0.0 bbPress (r2667)

bbp_get_reply_author_id( $reply_id = 0 )   X-Ref
Return the author ID of the reply

return: string Author id of reply
param: int $reply_id Optional. Reply id
since: 2.0.0 bbPress (r2667)

bbp_reply_author_display_name( $reply_id = 0 )   X-Ref
Output the author display_name of the reply

param: int $reply_id Optional. Reply id
since: 2.0.0 bbPress (r2667)

bbp_get_reply_author_display_name( $reply_id = 0 )   X-Ref
Return the author display_name of the reply

return: string The display name of the author of the reply
param: int $reply_id Optional. Reply id
since: 2.0.0 bbPress (r2667)

bbp_reply_author_avatar( $reply_id = 0, $size = 40 )   X-Ref
Output the author avatar of the reply

param: int $reply_id Optional. Reply id
param: int $size Optional. Size of the avatar. Defaults to 40
since: 2.0.0 bbPress (r2667)

bbp_get_reply_author_avatar( $reply_id = 0, $size = 40 )   X-Ref
Return the author avatar of the reply

return: string Avatar of author of the reply
param: int $reply_id Optional. Reply id
param: int $size Optional. Size of the avatar. Defaults to 40
since: 2.0.0 bbPress (r2667)

bbp_reply_author_link( $args = array()   X-Ref
Output the author link of the reply

param: array $args Optional. If it is an integer, it is used as reply id.
since: 2.0.0 bbPress (r2717)

bbp_get_reply_author_link( $args = array()   X-Ref
Return the author link of the reply

return: string Author link of reply
param: array $args Optional. If an integer, it is used as reply id.
since: 2.0.0 bbPress (r2717)

bbp_reply_author_url( $reply_id = 0 )   X-Ref
Output the author url of the reply

param: int $reply_id Optional. Reply id
since: 2.0.0 bbPress (r2667)

bbp_get_reply_author_url( $reply_id = 0 )   X-Ref
Return the author url of the reply

return: string Author URL of the reply
param: int $reply_id Optional. Reply id
since: 2.0.0 bbPress (r2667)

bbp_reply_author_email( $reply_id = 0 )   X-Ref
Output the reply author email address

param: int $reply_id Optional. Reply id
since: 2.0.0 bbPress (r3445)

bbp_get_reply_author_email( $reply_id = 0 )   X-Ref
Return the reply author email address

return: string Reply author email address
param: int $reply_id Optional. Reply id
since: 2.0.0 bbPress (r3445)

bbp_reply_author_role( $args = array()   X-Ref
Output the reply author role

param: array $args Optional.
since: 2.1.0 bbPress (r3860)

bbp_get_reply_author_role( $args = array()   X-Ref
Return the reply author role

return: string Reply author role
param: array $args Optional.
since: 2.1.0 bbPress (r3860)

bbp_reply_topic_title( $reply_id = 0 )   X-Ref
Output the topic title a reply belongs to

param: int $reply_id Optional. Reply id
since: 2.0.0 bbPress (r2553)

bbp_get_reply_topic_title( $reply_id = 0 )   X-Ref
Return the topic title a reply belongs to

return: string The topic title of the reply
param: int $reply_id Optional. Reply id
since: 2.0.0 bbPress (r2553)

bbp_reply_topic_id( $reply_id = 0 )   X-Ref
Output the topic id a reply belongs to

param: int $reply_id Optional. Reply id
since: 2.0.0 bbPress (r2553)

bbp_get_reply_topic_id( $reply_id = 0 )   X-Ref
Return the topic id a reply belongs to

return: int The topic id of the reply
param: int $reply_id Optional. Reply id
since: 2.0.0 bbPress (r2553)

bbp_reply_forum_id( $reply_id = 0 )   X-Ref
Output the forum id a reply belongs to

param: int $reply_id Optional. Reply id
since: 2.0.0 bbPress (r2679)

bbp_get_reply_forum_id( $reply_id = 0 )   X-Ref
Return the forum id a reply belongs to

return: int The forum id of the reply
param: int $reply_id Optional. Reply id
since: 2.0.0 bbPress (r2679)

bbp_reply_ancestor_id( $reply_id = 0 )   X-Ref
Output the ancestor reply id of a reply

param: int $reply_id Optional. Reply id
since: 2.4.0 bbPress (r4944)

bbp_get_reply_ancestor_id( $reply_id = 0 )   X-Ref
Return the ancestor reply id of a reply

param: in $reply_id Reply id
since: 2.4.0 bbPress (r4944)

bbp_reply_to( $reply_id = 0 )   X-Ref
Output the reply to id of a reply

param: int $reply_id Optional. Reply id
since: 2.4.0 bbPress (r4944)

bbp_get_reply_to( $reply_id = 0 )   X-Ref
Return the reply to id of a reply

return: int The parent reply id of the reply
param: int $reply_id Optional. Reply id
since: 2.4.0 bbPress (r4944)

bbp_reply_to_link( $args = array()   X-Ref
Output the link for the reply to

param: array $args
since: 2.4.0 bbPress (r4944)

bbp_get_reply_to_link( $args = array()   X-Ref
Return the link for a reply to a reply

return: string Link for a reply to a reply
param: array $args Arguments
since: 2.4.0 bbPress (r4944)

bbp_cancel_reply_to_link( $text = '' )   X-Ref
Output the reply to a reply cancellation link

since: 2.4.0 bbPress (r4944)

bbp_get_cancel_reply_to_link( $text = '' )   X-Ref
Return the cancellation link for a reply to a reply

return: string The cancellation link
param: string $text The cancel text
since: 2.4.0 bbPress (r4944)

bbp_reply_position( $reply_id = 0, $topic_id = 0 )   X-Ref
Output the numeric position of a reply within a topic

param: int $reply_id Optional. Reply id
param: int $topic_id Optional. Topic id
since: 2.0.0 bbPress (r2984)

bbp_get_reply_position( $reply_id = 0, $topic_id = 0 )   X-Ref
Return the numeric position of a reply within a topic

return: int Reply position
param: int $reply_id Optional. Reply id
param: int $topic_id Optional. Topic id
since: 2.0.0 bbPress (r2984)

bbp_reply_admin_links( $args = array()   X-Ref
Output admin links for reply

param: array $args See {@link bbp_get_reply_admin_links()}
since: 2.0.0 bbPress (r2667)

bbp_get_reply_admin_links( $args = array()   X-Ref
Return admin links for reply

return: string Reply admin links
param: array $args This function supports these arguments:
since: 2.0.0 bbPress (r2667)

bbp_reply_edit_link( $args = array()   X-Ref
Output the edit link of the reply

param: array $args See {@link bbp_get_reply_edit_link()}
since: 2.0.0 bbPress (r2740)

bbp_get_reply_edit_link( $args = array()   X-Ref
Return the edit link of the reply

return: string Reply edit link
param: array $args This function supports these arguments:
since: 2.0.0 bbPress (r2740)

bbp_reply_edit_url( $reply_id = 0 )   X-Ref
Output URL to the reply edit page

param: int $reply_id Optional. Reply id
since: 2.0.0 bbPress (r2753)

bbp_get_reply_edit_url( $reply_id = 0 )   X-Ref
Return URL to the reply edit page

return: string Reply edit url
param: int $reply_id Optional. Reply id
since: 2.0.0 bbPress (r2753)

bbp_reply_trash_link( $args = array()   X-Ref
Output the trash link of the reply

param: array $args See {@link bbp_get_reply_trash_link()}
since: 2.0.0 bbPress (r2740)

bbp_get_reply_trash_link( $args = array()   X-Ref
Return the trash link of the reply

return: string Reply trash link
param: array $args This function supports these arguments:
since: 2.0.0 bbPress (r2740)

bbp_reply_spam_link( $args = array()   X-Ref
Output the spam link of the reply

param: array $args See {@link bbp_get_reply_spam_link()}
since: 2.0.0 bbPress (r2740)

bbp_get_reply_spam_link( $args = array()   X-Ref
Return the spam link of the reply

return: string Reply spam link
param: array $args This function supports these arguments:
since: 2.0.0 bbPress (r2740)

bbp_reply_move_link( $args = array()   X-Ref
Move reply link

Output the move link of the reply

param: array $args See {@link bbp_get_reply_move_link()}
since: 2.3.0 bbPress (r4521)

bbp_get_reply_move_link( $args = array()   X-Ref
Get move reply link

Return the move link of the reply

return: string Reply move link
param: array $args This function supports these arguments:
since: 2.3.0 bbPress (r4521)

bbp_topic_split_link( $args = array()   X-Ref
Split topic link

Output the split link of the topic (but is bundled with each reply)

param: array $args See {@link bbp_get_topic_split_link()}
since: 2.0.0 bbPress (r2756)

bbp_get_topic_split_link( $args = array()   X-Ref
Get split topic link

Return the split link of the topic (but is bundled with each reply)

return: string Topic split link
param: array $args This function supports these arguments:
since: 2.0.0 bbPress (r2756)

bbp_reply_approve_link( $args = array()   X-Ref
Output the approve link of the reply

param: array $args See {@link bbp_get_reply_approve_link()}
since: 2.6.0 bbPress (r5507)

bbp_get_reply_approve_link( $args = array()   X-Ref
Return the approve link of the reply

return: string Reply approve link
param: array $args This function supports these args:
since: 2.6.0 bbPress (r5507)

bbp_reply_class( $reply_id = 0, $classes = array()   X-Ref
Output the row class of a reply

param: int $reply_id Optional. Reply ID
param: array Extra classes you can pass when calling this function
since: 2.0.0 bbPress (r2678)

bbp_get_reply_class( $reply_id = 0, $classes = array()   X-Ref
Return the row class of a reply

return: string Row class of the reply
param: int $reply_id Optional. Reply ID
param: array Extra classes you can pass when calling this function
since: 2.0.0 bbPress (r2678)

bbp_get_replies_pagination_base( $topic_id = 0 )   X-Ref
Return the base URL used inside of pagination links

return: string
param: int $topic_id
since: 2.6.0 bbPress (r6679)

bbp_topic_pagination_count()   X-Ref
Output the topic pagination count

The results are unescaped by design, to allow them to be filtered freely via
the 'bbp_get_topic_pagination_count' filter.

since: 2.0.0 bbPress (r2519)

bbp_get_topic_pagination_count()   X-Ref
Return the topic pagination count

return: string Topic pagination count
since: 2.0.0 bbPress (r2519)

bbp_topic_pagination_links()   X-Ref
Output topic pagination links

since: 2.0.0 bbPress (r2519)

bbp_get_topic_pagination_links()   X-Ref
Return topic pagination links

return: string Topic pagination links
since: 2.0.0 bbPress (r2519)

bbp_form_reply_content()   X-Ref
Output the value of reply content field

since: 2.0.0 bbPress (r3130)

bbp_get_form_reply_content()   X-Ref
Return the value of reply content field

return: string Value of reply content field
since: 2.0.0 bbPress (r3130)

bbp_form_reply_to()   X-Ref
Output the value of the reply to field

since: 2.4.0 bbPress (r4944)

bbp_get_form_reply_to()   X-Ref
Return the value of reply to field

return: string Value of reply to field
since: 2.4.0 bbPress (r4944)

bbp_reply_to_dropdown( $reply_id = 0 )   X-Ref
Output a select box allowing to pick which reply an existing hierarchical
reply belongs to.

param: int $reply_id
since: 2.6.0 bbPress (r5387)

bbp_get_reply_to_dropdown( $reply_id = 0 )   X-Ref
Return a select box allowing to pick which topic/reply a reply belongs.

return: string The dropdown
param: int $reply_id
since: 2.6.0 bbPress (r5387)

bbp_form_reply_log_edit()   X-Ref
Output checked value of reply log edit field

since: 2.0.0 bbPress (r3130)

bbp_get_form_reply_log_edit()   X-Ref
Return checked value of reply log edit field

return: string Reply log edit checked value
since: 2.0.0 bbPress (r3130)

bbp_form_reply_edit_reason()   X-Ref
Output the value of the reply edit reason

since: 2.0.0 bbPress (r3130)

bbp_get_form_reply_edit_reason()   X-Ref
Return the value of the reply edit reason

return: string Reply edit reason value
since: 2.0.0 bbPress (r3130)

bbp_form_reply_status_dropdown( $args = array()   X-Ref
Output value reply status dropdown

param: $args This function supports these arguments:
since: 2.6.0 bbPress (r5399)

bbp_get_form_reply_status_dropdown( $args = array()   X-Ref
Returns reply status dropdown

This dropdown is only intended to be seen by users with the 'moderate'
capability. Because of this, no additional capability checks are performed
within this function to check available reply statuses.

param: $args This function supports these arguments:
since: 2.6.0 bbPress (r5399)

bbp_is_reply_form_post_request()   X-Ref
Verify if a POST request came from a failed reply attempt.

Used to avoid cross-site request forgeries when checking posted reply form
content.

return: boolean True if is a post request with valid nonce
since: 2.6.0 bbPress (r5558)



Generated: Sat May 18 01:00:57 2024 Cross-referenced by PHPXref 0.7.1