Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created August 5, 2022 13:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jchristopher/7a561bf9061c4c6c1f5a655ddbf518f0 to your computer and use it in GitHub Desktop.
Save jchristopher/7a561bf9061c4c6c1f5a655ddbf518f0 to your computer and use it in GitHub Desktop.
Tell OrganizeWP to use our Comments Info Column
<?php
// Tell OrganizeWP to use our Comments Info Column
// @link https://gist.github.com/jchristopher/6892032eeec8d0ad3087ea166eb97b45
// @link https://organizewp.com/docs/info-columns/
add_filter( 'organizewp/post_type/info_columns', function( $info_columns, \OrganizeWP\PostType $post_type ) {
$info_columns['my_owp_comments'] = new MyOwpInfoColumnComments( $post_type );
return $info_columns;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment