Skip to content

Instantly share code, notes, and snippets.

@engelen
Created April 10, 2014 07:24
Show Gist options
  • Save engelen/10351346 to your computer and use it in GitHub Desktop.
Save engelen/10351346 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'cac/column/value', 'myplugin_column_value', 10, 4 ); // All columns for all content types
function myplugin_column_value( $value, $object_id, $column, $storage_type ) {
// Possibly modify $value
return $value;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment