├── .github ├── assets │ ├── install-wp-plugin.png │ ├── install-yoast.png │ ├── install.png │ └── view.png └── workflows │ └── node.js.yml ├── .gitignore ├── .travis.yml ├── .vscode └── settings.json ├── .yarnrc ├── Gruntfile.js ├── LICENSE ├── assets ├── banner-1344x500.png ├── banner-772x250.png ├── css │ ├── admin.less │ └── frontend.less ├── icon-128x128.png ├── icon-256x256.png └── js │ ├── admin.js │ ├── frontend.js │ └── settings.js ├── composer.json ├── composer.lock ├── flyyer-previews.php ├── includes ├── class-flyyer-previews-settings.php ├── class-flyyer-previews.php └── lib │ ├── class-flyyer-previews-admin-api.php │ ├── class-flyyer-previews-post-type.php │ └── class-flyyer-previews-taxonomy.php ├── index.php ├── lang └── flyyer-previews.pot ├── package.json ├── readme.txt ├── uninstall.php └── yarn.lock /.github/assets/install-wp-plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/flyyer-wp/HEAD/.github/assets/install-wp-plugin.png -------------------------------------------------------------------------------- /.github/assets/install-yoast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/flyyer-wp/HEAD/.github/assets/install-yoast.png -------------------------------------------------------------------------------- /.github/assets/install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/flyyer-wp/HEAD/.github/assets/install.png -------------------------------------------------------------------------------- /.github/assets/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/flyyer-wp/HEAD/.github/assets/view.png -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/flyyer-wp/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/flyyer-wp/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/flyyer-wp/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/flyyer-wp/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/flyyer-wp/HEAD/.yarnrc -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/flyyer-wp/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/flyyer-wp/HEAD/LICENSE -------------------------------------------------------------------------------- /assets/banner-1344x500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/flyyer-wp/HEAD/assets/banner-1344x500.png -------------------------------------------------------------------------------- /assets/banner-772x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/flyyer-wp/HEAD/assets/banner-772x250.png -------------------------------------------------------------------------------- /assets/css/admin.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/css/frontend.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/flyyer-wp/HEAD/assets/icon-128x128.png -------------------------------------------------------------------------------- /assets/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/flyyer-wp/HEAD/assets/icon-256x256.png -------------------------------------------------------------------------------- /assets/js/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/flyyer-wp/HEAD/assets/js/admin.js -------------------------------------------------------------------------------- /assets/js/frontend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/flyyer-wp/HEAD/assets/js/frontend.js -------------------------------------------------------------------------------- /assets/js/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/flyyer-wp/HEAD/assets/js/settings.js -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/flyyer-wp/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/flyyer-wp/HEAD/composer.lock -------------------------------------------------------------------------------- /flyyer-previews.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/flyyer-wp/HEAD/flyyer-previews.php -------------------------------------------------------------------------------- /includes/class-flyyer-previews-settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/flyyer-wp/HEAD/includes/class-flyyer-previews-settings.php -------------------------------------------------------------------------------- /includes/class-flyyer-previews.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/flyyer-wp/HEAD/includes/class-flyyer-previews.php -------------------------------------------------------------------------------- /includes/lib/class-flyyer-previews-admin-api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/flyyer-wp/HEAD/includes/lib/class-flyyer-previews-admin-api.php -------------------------------------------------------------------------------- /includes/lib/class-flyyer-previews-post-type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/flyyer-wp/HEAD/includes/lib/class-flyyer-previews-post-type.php -------------------------------------------------------------------------------- /includes/lib/class-flyyer-previews-taxonomy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/flyyer-wp/HEAD/includes/lib/class-flyyer-previews-taxonomy.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/flyyer-wp/HEAD/index.php -------------------------------------------------------------------------------- /lang/flyyer-previews.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/flyyer-wp/HEAD/lang/flyyer-previews.pot -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/flyyer-wp/HEAD/package.json -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/flyyer-wp/HEAD/readme.txt -------------------------------------------------------------------------------- /uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/flyyer-wp/HEAD/uninstall.php -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/useflyyer/flyyer-wp/HEAD/yarn.lock --------------------------------------------------------------------------------