Bbpress_Helpers::list_bbpress_forums( string $label = null, string $option_code = 'BBFORUMS', $any_option = false )
Contents
Parameters Parameters
- $label
-
(string) (Optional)
Default value: null
- $option_code
-
(string) (Optional)
Default value: 'BBFORUMS'
Return Return
(mixed)
Source Source
File: src/integrations/bbpress/helpers/bbpress-helpers.php
public function list_bbpress_forums( $label = null, $option_code = 'BBFORUMS', $any_option = false ) { if ( ! $this->load_options ) { return Automator()->helpers->recipe->build_default_options_array( $label, $option_code ); } if ( ! function_exists( 'bbp_get_forum_post_type' ) ) { return Automator()->helpers->recipe->build_default_options_array( $label, $option_code ); } if ( ! $label ) { $label = esc_attr__( 'Forum', 'uncanny-automator' ); } $any_label = null; if ( $any_option ) { $any_label = esc_attr__( 'Any forum', 'uncanny-automator' ); } $args = [ 'post_type' => bbp_get_forum_post_type(), 'posts_per_page' => 999, 'orderby' => 'title', 'order' => 'ASC', 'post_status' => [ 'publish', 'private' ], ]; $options = Automator()->helpers->recipe->options->wp_query( $args, $any_option, $any_label ); $option = [ 'option_code' => $option_code, 'label' => $label, 'input_type' => 'select', 'required' => true, 'options' => $options, 'relevant_tokens' => [ $option_code => esc_attr__( 'Forum title', 'uncanny-automator' ), $option_code . '_ID' => esc_attr__( 'Forum ID', 'uncanny-automator' ), $option_code . '_URL' => esc_attr__( 'Forum URL', 'uncanny-automator' ), ], ]; return apply_filters( 'uap_option_list_bbpress_forums', $option ); }
Expand full source code Collapse full source code View on Github