Warning: Array to string conversion in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 825
Warning: foreach() argument must be of type array|object, string given in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 830
Warning: Array to string conversion in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 825
Warning: foreach() argument must be of type array|object, string given in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 830
Warning: Array to string conversion in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 825
Buddyboss_Helpers::list_buddyboss_forums( string $label = null, string $option_code = 'BDBFORUMS', $args = array() )
Contents
Warning: foreach() argument must be of type array|object, string given in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 830
Warning: Array to string conversion in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 825
Warning: foreach() argument must be of type array|object, string given in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 830
Warning: Array to string conversion in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 825
Parameters Parameters
- $label
(Optional)
Default value: null
- $option_code
(Optional)
Default value: 'BDBFORUMS'
Return Return
(mixed)
Source Source
File: src/integrations/buddyboss/helpers/buddyboss-helpers.php
public function list_buddyboss_forums( $label = null, $option_code = 'BDBFORUMS', $args = array() ) { 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 ); } $args = wp_parse_args( $args, array( 'uo_include_any' => false, 'uo_any_label' => esc_attr__( 'Any forum', 'uncanny-automator' ), ) ); if ( ! $label ) { $label = esc_attr__( 'Forum', 'uncanny-automator' ); } $options = array(); $forum_args = [ 'post_type' => bbp_get_forum_post_type(), 'posts_per_page' => 999, 'orderby' => 'title', 'order' => 'ASC', 'post_status' => [ 'publish', 'private' ], ]; if ( $args['uo_include_any'] ) { $options[ - 1 ] = $args['uo_any_label']; } $forums = Automator()->helpers->recipe->options->wp_query( $forum_args ); if ( ! empty( $forums ) ) { foreach ( $forums as $key => $forum ) { $options[ $key ] = $forum; } } $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_buddyboss_forums', $option ); }
Expand full source code Collapse full source code View on Github