Skip to content

Instantly share code, notes, and snippets.

@engelen
Created April 10, 2014 07:34
Show Gist options
  • Save engelen/10352041 to your computer and use it in GitHub Desktop.
Save engelen/10352041 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'cac/column/value', 'myplugin_cac_column_featured_image_value', 10, 4 );
function myplugin_cac_column_featured_image_value( $value, $postid, $column, $post_type ) {
if ( $column->properties->type == 'column-featured_image' ) {
if ( ! $value ) {
$value = '<em>' . __( 'No featured image', 'myplugin' ) . '</em>';
}
}
return $value;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment