├── .gitignore ├── LICENSE ├── README.md ├── css └── admin.css ├── index.php ├── js └── admin.js ├── lang └── open-wp-seo.pot ├── modules ├── open-wp-seo-compression.php ├── open-wp-seo-content.php ├── open-wp-seo-imagesitemap.php ├── open-wp-seo-meta.php ├── open-wp-seo-ping.php ├── open-wp-seo-sitemap.php ├── open-wp-seo-ui-settings.php ├── open-wp-seo-ui.php └── open-wp-seo-widget.php ├── open-wp-seo.php ├── readme.txt ├── screenshots ├── open-wp-seo-dashboard.png ├── open-wp-seo-post-edit.png └── open-wp-seo-settings.png └── uninstall.php /.gitignore: -------------------------------------------------------------------------------- 1 | *.nogit 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzri/open-wordpress-seo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzri/open-wordpress-seo/HEAD/README.md -------------------------------------------------------------------------------- /css/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzri/open-wordpress-seo/HEAD/css/admin.css -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 |