golden hour
/home/phakp/public_html/wp/wp-content/plugins/bbpress/templates/default/bbpress
⬆️ Go Up
Upload
File/Folder
Size
Actions
alert-topic-lock.php
733 B
Del
OK
content-archive-forum.php
653 B
Del
OK
content-archive-topic.php
1.15 KB
Del
OK
content-search.php
842 B
Del
OK
content-single-forum.php
1.2 KB
Del
OK
content-single-reply.php
559 B
Del
OK
content-single-topic-lead.php
2.33 KB
Del
OK
content-single-topic.php
1.12 KB
Del
OK
content-single-user.php
1.21 KB
Del
OK
content-single-view.php
663 B
Del
OK
content-statistics.php
1.88 KB
Del
OK
content-topic-tag-edit.php
701 B
Del
OK
feedback-logged-in.php
285 B
Del
OK
feedback-no-access.php
508 B
Del
OK
feedback-no-forums.php
292 B
Del
OK
feedback-no-replies.php
294 B
Del
OK
feedback-no-search.php
308 B
Del
OK
feedback-no-topics.php
292 B
Del
OK
form-anonymous.php
1.47 KB
Del
OK
form-forum.php
5.97 KB
Del
OK
form-protected.php
372 B
Del
OK
form-reply-move.php
3.4 KB
Del
OK
form-reply-search.php
621 B
Del
OK
form-reply.php
7.38 KB
Del
OK
form-search.php
705 B
Del
OK
form-topic-merge.php
4.15 KB
Del
OK
form-topic-search.php
620 B
Del
OK
form-topic-split.php
4.61 KB
Del
OK
form-topic-tag.php
4.67 KB
Del
OK
form-topic.php
8.02 KB
Del
OK
form-user-edit.php
5.51 KB
Del
OK
form-user-login.php
1.44 KB
Del
OK
form-user-lost-pass.php
977 B
Del
OK
form-user-passwords.php
2.12 KB
Del
OK
form-user-register.php
1.62 KB
Del
OK
form-user-roles.php
416 B
Del
OK
loop-forums.php
1.13 KB
Del
OK
loop-replies.php
1.31 KB
Del
OK
loop-search-forum.php
1.13 KB
Del
OK
loop-search-reply.php
1.58 KB
Del
OK
loop-search-topic.php
2.1 KB
Del
OK
loop-search.php
1.11 KB
Del
OK
loop-single-forum.php
1.98 KB
Del
OK
loop-single-reply.php
1.79 KB
Del
OK
loop-single-topic.php
2.97 KB
Del
OK
loop-topics.php
1.21 KB
Del
OK
pagination-replies.php
488 B
Del
OK
pagination-search.php
475 B
Del
OK
pagination-topics.php
487 B
Del
OK
user-details.php
3.77 KB
Del
OK
user-engagements.php
876 B
Del
OK
user-favorites.php
866 B
Del
OK
user-profile.php
1.81 KB
Del
OK
user-replies-created.php
896 B
Del
OK
user-subscriptions.php
1.43 KB
Del
OK
user-topics-created.php
900 B
Del
OK
Edit: form-forum.php
<?php /** * New/Edit Forum * * @package bbPress * @subpackage Theme */ // Exit if accessed directly defined( 'ABSPATH' ) || exit; if ( bbp_is_forum_edit() ) : ?> <div id="bbpress-forums" class="bbpress-wrapper"> <?php bbp_breadcrumb(); ?> <?php bbp_single_forum_description( array( 'forum_id' => bbp_get_forum_id() ) ); ?> <?php endif; ?> <?php if ( bbp_current_user_can_access_create_forum_form() ) : ?> <div id="new-forum-<?php bbp_forum_id(); ?>" class="bbp-forum-form"> <form id="new-post" name="new-post" method="post"> <?php do_action( 'bbp_theme_before_forum_form' ); ?> <fieldset class="bbp-form"> <legend> <?php if ( bbp_is_forum_edit() ) : printf( esc_html__( 'Now Editing “%s”', 'bbpress' ), bbp_get_forum_title() ); else : bbp_is_single_forum() ? printf( esc_html__( 'Create New Forum in “%s”', 'bbpress' ), bbp_get_forum_title() ) : esc_html_e( 'Create New Forum', 'bbpress' ); endif; ?> </legend> <?php do_action( 'bbp_theme_before_forum_form_notices' ); ?> <?php if ( ! bbp_is_forum_edit() && bbp_is_forum_closed() ) : ?> <div class="bbp-template-notice"> <ul> <li><?php esc_html_e( 'This forum is closed to new content, however your posting capabilities still allow you to post.', 'bbpress' ); ?></li> </ul> </div> <?php endif; ?> <?php if ( current_user_can( 'unfiltered_html' ) ) : ?> <div class="bbp-template-notice"> <ul> <li><?php esc_html_e( 'Your account has the ability to post unrestricted HTML content.', 'bbpress' ); ?></li> </ul> </div> <?php endif; ?> <?php do_action( 'bbp_template_notices' ); ?> <div> <?php do_action( 'bbp_theme_before_forum_form_title' ); ?> <p> <label for="bbp_forum_title"><?php printf( esc_html__( 'Forum Name (Maximum Length: %d):', 'bbpress' ), bbp_get_title_max_length() ); ?></label><br /> <input type="text" id="bbp_forum_title" value="<?php bbp_form_forum_title(); ?>" size="40" name="bbp_forum_title" maxlength="<?php bbp_title_max_length(); ?>" /> </p> <?php do_action( 'bbp_theme_after_forum_form_title' ); ?> <?php do_action( 'bbp_theme_before_forum_form_content' ); ?> <?php bbp_the_content( array( 'context' => 'forum' ) ); ?> <?php do_action( 'bbp_theme_after_forum_form_content' ); ?> <?php if ( ! ( bbp_use_wp_editor() || current_user_can( 'unfiltered_html' ) ) ) : ?> <p class="form-allowed-tags"> <label><?php esc_html_e( 'You may use these <abbr title="HyperText Markup Language">HTML</abbr> tags and attributes:','bbpress' ); ?></label><br /> <code><?php bbp_allowed_tags(); ?></code> </p> <?php endif; ?> <?php if ( bbp_allow_forum_mods() && current_user_can( 'assign_moderators' ) ) : ?> <?php do_action( 'bbp_theme_before_forum_form_mods' ); ?> <p> <label for="bbp_moderators"><?php esc_html_e( 'Forum Moderators:', 'bbpress' ); ?></label><br /> <input type="text" value="<?php bbp_form_forum_moderators(); ?>" size="40" name="bbp_moderators" id="bbp_moderators" /> </p> <?php do_action( 'bbp_theme_after_forum_form_mods' ); ?> <?php endif; ?> <?php do_action( 'bbp_theme_before_forum_form_type' ); ?> <p> <label for="bbp_forum_type"><?php esc_html_e( 'Forum Type:', 'bbpress' ); ?></label><br /> <?php bbp_form_forum_type_dropdown(); ?> </p> <?php do_action( 'bbp_theme_after_forum_form_type' ); ?> <?php do_action( 'bbp_theme_before_forum_form_status' ); ?> <p> <label for="bbp_forum_status"><?php esc_html_e( 'Status:', 'bbpress' ); ?></label><br /> <?php bbp_form_forum_status_dropdown(); ?> </p> <?php do_action( 'bbp_theme_after_forum_form_status' ); ?> <?php do_action( 'bbp_theme_before_forum_visibility_status' ); ?> <p> <label for="bbp_forum_visibility"><?php esc_html_e( 'Visibility:', 'bbpress' ); ?></label><br /> <?php bbp_form_forum_visibility_dropdown(); ?> </p> <?php do_action( 'bbp_theme_after_forum_visibility_status' ); ?> <?php do_action( 'bbp_theme_before_forum_form_parent' ); ?> <p> <label for="bbp_forum_parent_id"><?php esc_html_e( 'Parent Forum:', 'bbpress' ); ?></label><br /> <?php bbp_dropdown( array( 'select_id' => 'bbp_forum_parent_id', 'show_none' => esc_html__( '— No parent —', 'bbpress' ), 'selected' => bbp_get_form_forum_parent(), 'exclude' => bbp_get_forum_id() ) ); ?> </p> <?php do_action( 'bbp_theme_after_forum_form_parent' ); ?> <?php do_action( 'bbp_theme_before_forum_form_submit_wrapper' ); ?> <div class="bbp-submit-wrapper"> <?php do_action( 'bbp_theme_before_forum_form_submit_button' ); ?> <button type="submit" id="bbp_forum_submit" name="bbp_forum_submit" class="button submit"><?php esc_html_e( 'Submit', 'bbpress' ); ?></button> <?php do_action( 'bbp_theme_after_forum_form_submit_button' ); ?> </div> <?php do_action( 'bbp_theme_after_forum_form_submit_wrapper' ); ?> </div> <?php bbp_forum_form_fields(); ?> </fieldset> <?php do_action( 'bbp_theme_after_forum_form' ); ?> </form> </div> <?php elseif ( bbp_is_forum_closed() ) : ?> <div id="no-forum-<?php bbp_forum_id(); ?>" class="bbp-no-forum"> <div class="bbp-template-notice"> <ul> <li><?php printf( esc_html__( 'The forum ‘%s’ is closed to new content.', 'bbpress' ), bbp_get_forum_title() ); ?></li> </ul> </div> </div> <?php else : ?> <div id="no-forum-<?php bbp_forum_id(); ?>" class="bbp-no-forum"> <div class="bbp-template-notice"> <ul> <li><?php is_user_logged_in() ? esc_html_e( 'You cannot create new forums.', 'bbpress' ) : esc_html_e( 'You must be logged in to create new forums.', 'bbpress' ); ?></li> </ul> </div> </div> <?php endif; ?> <?php if ( bbp_is_forum_edit() ) : ?> </div> <?php endif;
Save