├── .distignore ├── .github └── workflows │ ├── release.yml │ └── trigger-bundle-plugins-update.yml ├── README.md ├── composer.json ├── css └── admin-filter.css ├── inc ├── api.php ├── database │ ├── storage-handler.php │ ├── storage.php │ └── table.php ├── loader.php ├── object │ ├── factory.php │ ├── interface.php │ ├── post.php │ ├── term.php │ └── user.php ├── query │ ├── normalizer.php │ ├── post.php │ ├── query.php │ ├── term.php │ └── user.php ├── relationship │ ├── admin-columns.php │ ├── admin-filter.php │ ├── factory.php │ ├── meta-boxes.php │ └── relationship.php ├── rest-api.php └── shortcodes.php ├── js └── admin-filter.js ├── mb-relationships.php ├── readme.txt ├── tests ├── 01-basic-usage.php ├── 02-categories-to-posts.php ├── 03-users-to-posts.php ├── 04-each-connected.php ├── 05-sibling-api.php ├── 06-exclude-from-search.php ├── 07-query-by-multiple-relationships.php └── 08-reciprocal.php └── uninstall.php /.distignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpmetabox/mb-relationships/HEAD/.distignore -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpmetabox/mb-relationships/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/trigger-bundle-plugins-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpmetabox/mb-relationships/HEAD/.github/workflows/trigger-bundle-plugins-update.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpmetabox/mb-relationships/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpmetabox/mb-relationships/HEAD/composer.json -------------------------------------------------------------------------------- /css/admin-filter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpmetabox/mb-relationships/HEAD/css/admin-filter.css -------------------------------------------------------------------------------- /inc/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpmetabox/mb-relationships/HEAD/inc/api.php -------------------------------------------------------------------------------- /inc/database/storage-handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpmetabox/mb-relationships/HEAD/inc/database/storage-handler.php -------------------------------------------------------------------------------- /inc/database/storage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpmetabox/mb-relationships/HEAD/inc/database/storage.php -------------------------------------------------------------------------------- /inc/database/table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpmetabox/mb-relationships/HEAD/inc/database/table.php -------------------------------------------------------------------------------- /inc/loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpmetabox/mb-relationships/HEAD/inc/loader.php -------------------------------------------------------------------------------- /inc/object/factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpmetabox/mb-relationships/HEAD/inc/object/factory.php -------------------------------------------------------------------------------- /inc/object/interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpmetabox/mb-relationships/HEAD/inc/object/interface.php -------------------------------------------------------------------------------- /inc/object/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpmetabox/mb-relationships/HEAD/inc/object/post.php -------------------------------------------------------------------------------- /inc/object/term.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpmetabox/mb-relationships/HEAD/inc/object/term.php -------------------------------------------------------------------------------- /inc/object/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpmetabox/mb-relationships/HEAD/inc/object/user.php -------------------------------------------------------------------------------- /inc/query/normalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpmetabox/mb-relationships/HEAD/inc/query/normalizer.php -------------------------------------------------------------------------------- /inc/query/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpmetabox/mb-relationships/HEAD/inc/query/post.php -------------------------------------------------------------------------------- /inc/query/query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpmetabox/mb-relationships/HEAD/inc/query/query.php -------------------------------------------------------------------------------- /inc/query/term.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpmetabox/mb-relationships/HEAD/inc/query/term.php -------------------------------------------------------------------------------- /inc/query/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpmetabox/mb-relationships/HEAD/inc/query/user.php -------------------------------------------------------------------------------- /inc/relationship/admin-columns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpmetabox/mb-relationships/HEAD/inc/relationship/admin-columns.php -------------------------------------------------------------------------------- /inc/relationship/admin-filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpmetabox/mb-relationships/HEAD/inc/relationship/admin-filter.php -------------------------------------------------------------------------------- /inc/relationship/factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpmetabox/mb-relationships/HEAD/inc/relationship/factory.php -------------------------------------------------------------------------------- /inc/relationship/meta-boxes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpmetabox/mb-relationships/HEAD/inc/relationship/meta-boxes.php -------------------------------------------------------------------------------- /inc/relationship/relationship.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpmetabox/mb-relationships/HEAD/inc/relationship/relationship.php -------------------------------------------------------------------------------- /inc/rest-api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpmetabox/mb-relationships/HEAD/inc/rest-api.php -------------------------------------------------------------------------------- /inc/shortcodes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpmetabox/mb-relationships/HEAD/inc/shortcodes.php -------------------------------------------------------------------------------- /js/admin-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpmetabox/mb-relationships/HEAD/js/admin-filter.js -------------------------------------------------------------------------------- /mb-relationships.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpmetabox/mb-relationships/HEAD/mb-relationships.php -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpmetabox/mb-relationships/HEAD/readme.txt -------------------------------------------------------------------------------- /tests/01-basic-usage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpmetabox/mb-relationships/HEAD/tests/01-basic-usage.php -------------------------------------------------------------------------------- /tests/02-categories-to-posts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpmetabox/mb-relationships/HEAD/tests/02-categories-to-posts.php -------------------------------------------------------------------------------- /tests/03-users-to-posts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpmetabox/mb-relationships/HEAD/tests/03-users-to-posts.php -------------------------------------------------------------------------------- /tests/04-each-connected.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpmetabox/mb-relationships/HEAD/tests/04-each-connected.php -------------------------------------------------------------------------------- /tests/05-sibling-api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpmetabox/mb-relationships/HEAD/tests/05-sibling-api.php -------------------------------------------------------------------------------- /tests/06-exclude-from-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpmetabox/mb-relationships/HEAD/tests/06-exclude-from-search.php -------------------------------------------------------------------------------- /tests/07-query-by-multiple-relationships.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpmetabox/mb-relationships/HEAD/tests/07-query-by-multiple-relationships.php -------------------------------------------------------------------------------- /tests/08-reciprocal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpmetabox/mb-relationships/HEAD/tests/08-reciprocal.php -------------------------------------------------------------------------------- /uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpmetabox/mb-relationships/HEAD/uninstall.php --------------------------------------------------------------------------------