Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created August 4, 2022 17:04
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/b509c7cccaadbc248faa850c0fd60fa9 to your computer and use it in GitHub Desktop.
Save jchristopher/b509c7cccaadbc248faa850c0fd60fa9 to your computer and use it in GitHub Desktop.
Insert our OrganizeWP comment count Entry Panel Pane
<?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