Created
August 4, 2022 17:04
-
-
Save jchristopher/b509c7cccaadbc248faa850c0fd60fa9 to your computer and use it in GitHub Desktop.
Insert our OrganizeWP comment count Entry Panel Pane
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 | |
// Insert our OrganizeWP comment count Entry Panel Pane. | |
// @link https://organizewp.com/docs/entry-panel/ | |
// @link https://gist.github.com/jchristopher/922d0a9396f72a44090c2af64561d71f | |
// @link https://gist.github.com/jchristopher/94d0c4c565ef32d5a419ba857bd27b5f | |
add_filter( 'organizewp/entry_panel/panes', function( $panes, $panel ) { | |
$panes['my_owp_comment_count'] = new MyOwpPaneEntryComments( $panel ); | |
return $panes; | |
}, 10, 2 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment