├── .github └── workflows │ ├── deploy.yml │ ├── phpcs.yml │ └── update-assets.yml ├── .gitignore ├── .svnignore ├── .wordpress-org ├── icon-128x128.png └── icon-256x256.png ├── LICENSE ├── README.md ├── composer.json ├── feed-json-comments.php ├── feed-json-functions.php ├── feed-json.php ├── jsonfeed-wp.php ├── jsonfeed.png ├── jsonfeed.svg ├── phpcs.xml └── readme.txt /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manton/jsonfeed-wp/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/phpcs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manton/jsonfeed-wp/HEAD/.github/workflows/phpcs.yml -------------------------------------------------------------------------------- /.github/workflows/update-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manton/jsonfeed-wp/HEAD/.github/workflows/update-assets.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/* 2 | composer.lock 3 | -------------------------------------------------------------------------------- /.svnignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manton/jsonfeed-wp/HEAD/.svnignore -------------------------------------------------------------------------------- /.wordpress-org/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manton/jsonfeed-wp/HEAD/.wordpress-org/icon-128x128.png -------------------------------------------------------------------------------- /.wordpress-org/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manton/jsonfeed-wp/HEAD/.wordpress-org/icon-256x256.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manton/jsonfeed-wp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manton/jsonfeed-wp/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manton/jsonfeed-wp/HEAD/composer.json -------------------------------------------------------------------------------- /feed-json-comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manton/jsonfeed-wp/HEAD/feed-json-comments.php -------------------------------------------------------------------------------- /feed-json-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manton/jsonfeed-wp/HEAD/feed-json-functions.php -------------------------------------------------------------------------------- /feed-json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manton/jsonfeed-wp/HEAD/feed-json.php -------------------------------------------------------------------------------- /jsonfeed-wp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manton/jsonfeed-wp/HEAD/jsonfeed-wp.php -------------------------------------------------------------------------------- /jsonfeed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manton/jsonfeed-wp/HEAD/jsonfeed.png -------------------------------------------------------------------------------- /jsonfeed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manton/jsonfeed-wp/HEAD/jsonfeed.svg -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manton/jsonfeed-wp/HEAD/phpcs.xml -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manton/jsonfeed-wp/HEAD/readme.txt --------------------------------------------------------------------------------