Created
August 5, 2022 14:49
-
-
Save jchristopher/2825837aafc7f258d2fd8cf243f7996c to your computer and use it in GitHub Desktop.
Tell OrganizeWP about our custom Smart Group
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 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