Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created August 5, 2022 14:49
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/2825837aafc7f258d2fd8cf243f7996c to your computer and use it in GitHub Desktop.
Save jchristopher/2825837aafc7f258d2fd8cf243f7996c to your computer and use it in GitHub Desktop.
Tell OrganizeWP about our custom Smart Group
<?php
// Tell OrganizeWP about our custom Smart Group.
// @link https://organizewp.com/docs/smart-groups/
// @link https://gist.github.com/jchristopher/8488c91eb6c0d90922ec686865e23a2f
add_filter( 'organizewp/smart_groups', function( $smart_groups ) {
$smart_groups['my_owp_posts_no_comments'] = new MyOwpPostsNoComments();
return $smart_groups;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment