├── .gitignore ├── .travis.yml ├── composer.json ├── css └── wp-seo.css ├── js └── wp-seo.js ├── php ├── admin-functions.php ├── admin-template.php ├── class-wp-seo-formatting-tag.php ├── class-wp-seo-settings.php ├── class-wp-seo.php ├── default-filters.php ├── default-formatting-tags.php ├── formatting-functions.php ├── general-functions.php └── internal-functions.php ├── phpcs.ruleset.xml ├── phpunit.xml ├── readme.txt ├── tests ├── bootstrap.php ├── includes │ └── class-wp-seo-testcase.php ├── test-admin-functions.php ├── test-admin-template.php ├── test-default-formatting-tags.php ├── test-format.php ├── test-formatting-functions.php ├── test-general-functions.php ├── test-has-fields.php ├── test-internal-functions.php ├── test-metaboxes.php ├── test-sanitize-options.php ├── test-settings-page.php ├── test-wp-seo-properties.php ├── test-wp-seo-settings-properties.php ├── test-wp-seo.php └── test-wp-title-wp-head.php └── wp-seo.php /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-seo/HEAD/.travis.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-seo/HEAD/composer.json -------------------------------------------------------------------------------- /css/wp-seo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-seo/HEAD/css/wp-seo.css -------------------------------------------------------------------------------- /js/wp-seo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-seo/HEAD/js/wp-seo.js -------------------------------------------------------------------------------- /php/admin-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-seo/HEAD/php/admin-functions.php -------------------------------------------------------------------------------- /php/admin-template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-seo/HEAD/php/admin-template.php -------------------------------------------------------------------------------- /php/class-wp-seo-formatting-tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-seo/HEAD/php/class-wp-seo-formatting-tag.php -------------------------------------------------------------------------------- /php/class-wp-seo-settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-seo/HEAD/php/class-wp-seo-settings.php -------------------------------------------------------------------------------- /php/class-wp-seo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-seo/HEAD/php/class-wp-seo.php -------------------------------------------------------------------------------- /php/default-filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-seo/HEAD/php/default-filters.php -------------------------------------------------------------------------------- /php/default-formatting-tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-seo/HEAD/php/default-formatting-tags.php -------------------------------------------------------------------------------- /php/formatting-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-seo/HEAD/php/formatting-functions.php -------------------------------------------------------------------------------- /php/general-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-seo/HEAD/php/general-functions.php -------------------------------------------------------------------------------- /php/internal-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-seo/HEAD/php/internal-functions.php -------------------------------------------------------------------------------- /phpcs.ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-seo/HEAD/phpcs.ruleset.xml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-seo/HEAD/phpunit.xml -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-seo/HEAD/readme.txt -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-seo/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/includes/class-wp-seo-testcase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-seo/HEAD/tests/includes/class-wp-seo-testcase.php -------------------------------------------------------------------------------- /tests/test-admin-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-seo/HEAD/tests/test-admin-functions.php -------------------------------------------------------------------------------- /tests/test-admin-template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-seo/HEAD/tests/test-admin-template.php -------------------------------------------------------------------------------- /tests/test-default-formatting-tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-seo/HEAD/tests/test-default-formatting-tags.php -------------------------------------------------------------------------------- /tests/test-format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-seo/HEAD/tests/test-format.php -------------------------------------------------------------------------------- /tests/test-formatting-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-seo/HEAD/tests/test-formatting-functions.php -------------------------------------------------------------------------------- /tests/test-general-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-seo/HEAD/tests/test-general-functions.php -------------------------------------------------------------------------------- /tests/test-has-fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-seo/HEAD/tests/test-has-fields.php -------------------------------------------------------------------------------- /tests/test-internal-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-seo/HEAD/tests/test-internal-functions.php -------------------------------------------------------------------------------- /tests/test-metaboxes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-seo/HEAD/tests/test-metaboxes.php -------------------------------------------------------------------------------- /tests/test-sanitize-options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-seo/HEAD/tests/test-sanitize-options.php -------------------------------------------------------------------------------- /tests/test-settings-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-seo/HEAD/tests/test-settings-page.php -------------------------------------------------------------------------------- /tests/test-wp-seo-properties.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-seo/HEAD/tests/test-wp-seo-properties.php -------------------------------------------------------------------------------- /tests/test-wp-seo-settings-properties.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-seo/HEAD/tests/test-wp-seo-settings-properties.php -------------------------------------------------------------------------------- /tests/test-wp-seo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-seo/HEAD/tests/test-wp-seo.php -------------------------------------------------------------------------------- /tests/test-wp-title-wp-head.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-seo/HEAD/tests/test-wp-title-wp-head.php -------------------------------------------------------------------------------- /wp-seo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/wp-seo/HEAD/wp-seo.php --------------------------------------------------------------------------------