Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Yoast/wordpress-seo
Yoast SEO for WordPress
https://github.com/Yoast/wordpress-seo
breadcrumbs metadata opengraph php plugin seo wordpress xml-sitemap yoast yoast-seo
Last synced: 3 months ago
JSON representation
Yoast SEO for WordPress
- Host: GitHub
- URL: https://github.com/Yoast/wordpress-seo
- Owner: Yoast
- License: other
- Created: 2012-11-16T15:16:29.000Z (almost 12 years ago)
- Default Branch: trunk
- Last Pushed: 2024-04-15T15:15:04.000Z (7 months ago)
- Last Synced: 2024-04-16T01:09:37.008Z (7 months ago)
- Topics: breadcrumbs, metadata, opengraph, php, plugin, seo, wordpress, xml-sitemap, yoast, yoast-seo
- Language: JavaScript
- Homepage: https://yoast.com/wordpress/plugins/seo/
- Size: 888 MB
- Stars: 1,708
- Watchers: 148
- Forks: 871
- Open Issues: 1,072
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: license.txt
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Yoast SEO
[![CS](https://github.com/Yoast/wordpress-seo/actions/workflows/cs.yml/badge.svg)](https://github.com/Yoast/wordpress-seo/actions/workflows/cs.yml)
[![Lint](https://github.com/Yoast/wordpress-seo/actions/workflows/lint.yml/badge.svg)](https://github.com/Yoast/wordpress-seo/actions/workflows/lint.yml)
[![LintJS](https://github.com/Yoast/wordpress-seo/actions/workflows/jslint.yml/badge.svg)](https://github.com/Yoast/wordpress-seo/actions/workflows/jslint.yml)
[![TestJS](https://github.com/Yoast/wordpress-seo/actions/workflows/jstest.yml/badge.svg)](https://github.com/Yoast/wordpress-seo/actions/workflows/jstest.yml)
[![Test](https://github.com/Yoast/wordpress-seo/actions/workflows/test.yml/badge.svg)](https://github.com/Yoast/wordpress-seo/actions/workflows/test.yml)
[![Deployment](https://github.com/Yoast/wordpress-seo/actions/workflows/deploy.yml/badge.svg)](https://github.com/Yoast/wordpress-seo/actions/workflows/deploy.yml)
[![Coverage Status](https://coveralls.io/repos/github/Yoast/wordpress-seo/badge.svg?branch=trunk)](https://coveralls.io/github/Yoast/wordpress-seo?branch=trunk)[![Stable Version](https://poser.pugx.org/yoast/wordpress-seo/v/stable.svg)](https://packagist.org/packages/yoast/wordpress-seo)
[![License](https://poser.pugx.org/yoast/wordpress-seo/license.svg)](https://packagist.org/packages/yoast/wordpress-seo)## Welcome to the Yoast SEO GitHub repository
While the documentation for the [Yoast SEO plugin](https://yoa.st/1ul) can be found on [Yoast.com](https://yoa.st/1um), here
you can browse the source of the project, find and discuss open issues and even
[contribute yourself](.github/CONTRIBUTING.md).## Installation
Here's a [guide on how to install Yoast SEO in your WordPress site](https://yoa.st/1un).
## Want to contribute to Yoast SEO?
### Prerequisites
At Yoast, we make use a specific toolset to develop our code. Please ensure you have the following tools installed before contributing.
* [Composer](https://getcomposer.org/)
* [Yarn](https://yarnpkg.com/en/)
* [Grunt](https://gruntjs.com/)### Getting started
After installing the aforementioned tools, you can use the steps below to acquire a development version of Yoast SEO.
Please note that this will download the latest development version of Yoast SEO. While this version is usually stable,
it is not recommended for use in a production environment.Within your WordPress installation, navigate to `wp-content/plugins` and run the following commands:
```bash
git clone https://github.com/Yoast/wordpress-seo.git
cd wordpress-seo
```To install all the necessary dependencies, run the following commands:
```bash
composer install
yarn
grunt build
```During development, you could run `grunt build:dev` instead of `grunt build`, to save yourself downloading some dependencies that are only needed for a production environment.
Please note that if you change anything in the JavaScript or CSS, you'll have to run `grunt build:js` or `grunt build:css`, respectively.
For active development, you could run `grunt watch` to keep the build up-to-date and run checks right away.
For JavaScript only, a webpack development server is available. To enable the dev-server, you'll have to add this to your WordPress install's `config.php`:
```php
define( 'YOAST_SEO_DEV_SERVER', true );
```
and you can start it by running `yarn start` in the `wordpress-seo` folder.Another JavaScript alternative is `grunt webpack:watch`, this command will keep the JS files up-to-date. You'll have to refresh the page yourself since this does not run a development server.
This repository uses [the Yoast grunt tasks plugin](https://github.com/Yoast/plugin-grunt-tasks).
## Testing packages
To run tests for js packages, run the following command from `packages/js` folder:
```bash
yarn test
```
## SupportThis is a developer's portal for Yoast SEO and should not be used for support. Please visit the
[support forums](https://wordpress.org/support/plugin/wordpress-seo).## Reporting bugs
If you find an issue, [let us know here](https://github.com/yoast/wordpress-seo/issues/new)! Please follow [these guidelines](https://yoa.st/1uo) on how to write a good bug report.
It may help us a lot if you can provide a backtrace of the error encountered. You can use [code in this gist](https://gist.github.com/jrfnl/5925642) to enable the backtrace in your website's configuration.
## Contributions
Anyone is welcome to contribute to Yoast SEO. Please
[read the guidelines](.github/CONTRIBUTING.md) for contributing to this
repository.There are various ways you can contribute:
* [Raise an issue](https://github.com/yoast/wordpress-seo/issues) on GitHub.
* Send us a Pull Request with your bug fixes and/or new features.
* [Translate Yoast SEO into different languages](http://translate.yoast.com/projects/wordpress-seo/).
* Provide feedback and [suggestions on enhancements](https://github.com/yoast/wordpress-seo/issues?direction=desc&labels=Enhancement&page=1&sort=created&state=open).