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
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
Mycred_Helpers::list_mycred_rank_types( null $label = null, string $option_code = 'MYCREDRANKTYPES', array $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
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: 'MYCREDRANKTYPES'
- $args
(Optional)
Default value: array()
Return Return
(mixed|void)
Source Source
File: src/integrations/mycred/helpers/mycred-helpers.php
public function list_mycred_rank_types( $label = null, $option_code = 'MYCREDRANKTYPES', $args = array() ) { if ( ! $this->load_options ) { return Automator()->helpers->recipe->build_default_options_array( $label, $option_code ); } if ( ! $label ) { $label = esc_attr__( 'Ranks', 'uncanny-automator' ); } $token = key_exists( 'token', $args ) ? $args['token'] : false; $is_ajax = key_exists( 'is_ajax', $args ) ? $args['is_ajax'] : false; $target_field = key_exists( 'target_field', $args ) ? $args['target_field'] : ''; $end_point = key_exists( 'endpoint', $args ) ? $args['endpoint'] : ''; $include_all = key_exists( 'include_all', $args ) ? $args['include_all'] : false; $options = array(); if ( $include_all ) { $options['ua-all-mycred-ranks'] = esc_attr__( 'All ranks', 'uncanny-automator' ); } /*if ( Automator()->helpers->recipe->load_helpers ) { $posts = get_posts( [ 'post_type' => 'mycred_rank', 'posts_per_page' => 9999, 'post_status' => 'publish' ] ); if ( ! empty( $posts ) ) { foreach ( $posts as $post ) { if ( $post->post_type === 'mycred_rank' ) { $options[ $post->ID ] = $post->post_title; } } } }*/ $query_args = [ 'post_type' => 'mycred_rank', 'posts_per_page' => 9999, 'post_status' => 'publish', ]; $options = Automator()->helpers->recipe->wp_query( $query_args ); $type = 'select'; $option = [ 'option_code' => $option_code, 'label' => $label, 'input_type' => $type, 'required' => true, 'supports_tokens' => $token, 'is_ajax' => $is_ajax, 'fill_values_in' => $target_field, 'endpoint' => $end_point, 'options' => $options, 'custom_value_description' => esc_attr__( 'Rank ID', 'uncanny-automator' ), ]; return apply_filters( 'uap_option_list_mycred_rank_types', $option ); }
Expand full source code Collapse full source code View on Github