您好,我有一个“tour”自定义帖子类型,当我在此帖子类型中添加自定义列时,tour帖子类型中没有任何自定义列我的代码在这里
function tour_price_col( $column, $post_id){
switch ( $column ) {
case \'price\':
echo get_post_meta( $post_id, \'tour-price\', true );
break;
case \'test\':
echo "salam";
break;
}
}
add_action(\'manage_tour_posts_custom_column\', \'tour_price_col\', 10 ,2);