-
-
Save minimedj/18309a6cb2d7828990b370d3f4e77065 to your computer and use it in GitHub Desktop.
WordPress | Advanced Custom Fields | Create custom columns within admin for a custom post type using ACF
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Change the columns for the releases list screen | |
function change_columns( $cols ) { | |
$cols = array( | |
'cb' => '<input type="checkbox" />', | |
'featimg' => 'Featured Image', | |
'excerpt' => 'Excerpt?', | |
'title' => 'Title', | |
'artist' => 'Artist', | |
'catno' => 'Cat#', | |
'categories' => 'Category', | |
'tags' => 'Tags', | |
'date' => 'Release Date' | |
); | |
return $cols; | |
} | |
function custom_columns( $column ) { | |
global $post; | |
if( $column == 'featimg' ) { | |
if ( has_post_thumbnail() ) { | |
the_post_thumbnail( 'thumbnail' ); | |
} else { | |
echo '-'; | |
} | |
} | |
if( $column == 'excerpt' ) { | |
if ( has_excerpt() ) { | |
echo '✓'; | |
} else { | |
echo '-'; | |
} | |
} | |
if( $column == 'artist' ) { | |
$artist = get_field('artist'); | |
if( $artist ) { | |
echo $artist; | |
} else { | |
echo '-'; | |
} | |
} | |
if( $column == 'catno' ) { | |
$catno = get_field('cat_number'); | |
if( $catno ) { | |
echo $catno; | |
} else { | |
echo '-'; | |
} | |
} | |
} | |
add_action( "manage_releases_posts_custom_column", "custom_columns", 10, 2 ); | |
add_filter( "manage_releases_posts_columns", "change_columns" ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment