xxxxxxxxxx
add_action( 'manage_button_posts_custom_column' , 'shortcode_button_column', 10, 2);
function shortcode_button_column( $column, $post_id ) {
// shortcode column
if ( 'field label' === $column ) {
echo get_field('short_code', $post_id);
}
else{
echo '<script>alert("field not found.");</script>';
}
}