Created
August 5, 2022 13:27
-
-
Save jchristopher/7a561bf9061c4c6c1f5a655ddbf518f0 to your computer and use it in GitHub Desktop.
Tell OrganizeWP to use our Comments Info Column
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 | |
// 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