├── .gitignore ├── .gitmodules ├── CONTRIBUTING.md ├── README.md ├── assets └── images │ └── facebook-login-button.png ├── composer.json ├── hm-core.classes.php ├── hm-core.deprecated.php ├── hm-core.functions.php ├── hm-core.messages.php ├── hm-core.plugin.php ├── hm-core.related-posts.php ├── hm-core.termmeta.php ├── hm-core.wp-query-additions.php ├── languages ├── hm-core-de_DE.mo ├── hm-core-de_DE.po ├── hm-core-pl_PL.mo ├── hm-core-pl_PL.po └── hm-core.pot ├── media-uploader.extensions.php ├── scripts ├── hm-core.functions.js └── media-uploader.extensions.js └── tests ├── testHMCron.php ├── testImport.php └── tests.hm-rewrite-rule.php /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/hm-core/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/hm-core/HEAD/README.md -------------------------------------------------------------------------------- /assets/images/facebook-login-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/hm-core/HEAD/assets/images/facebook-login-button.png -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/hm-core/HEAD/composer.json -------------------------------------------------------------------------------- /hm-core.classes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/humanmade/hm-core/HEAD/hm-core.classes.php -------------------------------------------------------------------------------- /hm-core.deprecated.php: -------------------------------------------------------------------------------- 1 |