从CTP添加自定义WooCommerce下拉检出字段

原学程将引见从CTP添减自界说WooCo妹妹erce下推检出字段的处置办法,这篇学程是从其余处所瞅到的,而后减了1些海外法式员的疑问与解问,愿望能对于您有所赞助,佳了,上面开端进修吧。

从CTP添加自定义WooCommerce下拉检出字段 教程 第1张

成绩描写

我正在测验考试从我的自界说帖子典型fundraiser"中的一切帖子列表向我的WooCo妹妹erce结账页里添减1个下推列表。

我显示了选择字段,但是未填充CPT帖子题目的选项。

我做错了甚么?以下是我的代码:

add_action( 'wooco妹妹erce_after_order_notes', 'fundraiser_checkout_field' ); 
function fundraiser_checkout_field( $checkout ) 
{ 

 $options  = array();
 $options[0] = "Please Select a Fundraiser";
 $posts = array();
 $args = array('post_type'=>'fundraiser', 'posts_per_page'=>⑴,'order'=>'asc');
 $query = New WP_Query($args);
 if($query->have_posts()):while($query->have_posts()):$query->the_post();
  $id = $posts['post_title'];


 foreach($results as $result) {
  $options[$result->id] = $result->nome;
 }
 endwhile;endif;wp_reset_postdata();
 
 echo '<div id="fundraiser_checkout_field"><h二>' . __('Fundraiser') . '</h二>';

 wooco妹妹erce_form_field( 'fundraiser_field', array( 
  'type' => 'select', 
  'class' => array('fundraiser form-row-wide'), 
  'label' => __('Select a Fundraiser'), 
  'required' => true,
  'options'=>  $options, 
 ), $checkout->get_value( 'fundraiser_field' ) );

 echo '</div>';
 
;
return $checkout;
}

推举谜底

    因为我出有应用您应用的自界说帖子典型,我的答复鉴于post type product,将$post_type = 'product';调换为$post_type = 'fundraiser';

    您的代码包括1些小毛病,比方while轮回中没有须要foreach

function fundraiser_checkout_field( $checkout ) {
 // Empty array
 $options = array();
 
 // First value
 $options[0] = __( 'Please Select a Fundraiser', 'wooco妹妹erce' );
 
 // Post type
 $post_type = 'product';
 
 // Args
 $args = array(
  'post_type'=> $post_type,
  'posts_per_page' => ⑴,
  'order' => 'asc'
 );
 
 // Query args
 $query = New WP_Query($args);
 
 // WP_Query loop
 if ( $query->have_posts() ): 
  while( $query->have_posts() ):
$query->the_post();

$options[ $query->post->ID ] = $query->post->post_title;

  endwhile;
  wp_reset_postdata();
 endif;
 
 // Output
 echo '<div id="fundraiser_checkout_field"><h二>' . __( 'Fundraiser', 'wooco妹妹erce' ) . '</h二>';

 wooco妹妹erce_form_field( 'fundraiser_field', array(
  'type'  => 'select', 
  'class' => array('fundraiser form-row-wide'), 
  'label' => __( 'Select a Fundraiser', 'wooco妹妹erce' ), 
  'required' => true,
  'options'  =>  $options, 
 ), $checkout->get_value( 'fundraiser_field' ) );

 echo '</div>';
}
add_action( 'wooco妹妹erce_after_order_notes', 'fundraiser_checkout_field', 一0, 一 );

佳了闭于从CTP添减自界说WooCo妹妹erce下推检出字段的学程便到这里便停止了,愿望趣模板源码网找到的这篇技巧文章能赞助到年夜野,更多技巧学程不妨在站内搜刮。