syndication icon indicating copy to clipboard operation
syndication copied to clipboard

Syndicate your WordPress content.

Results 56 syndication issues
Sort by recently updated
recently updated
newest added

`mcrypt` library has been deprecated since PHP 7.1, and removed on PHP 7.2. This PR aims to replace the `mcrypt` implementation with the alternative `openssl` library. It also aims to...

If, for example, the sequence `%B2` exists somewhere in the site_token, `sanitize_text_field( $_POST['site_token'] )` will strip it out breaking the site_token. In class-syndication-wp-rest-client.php: `update_post_meta( $site_ID, 'syn_site_token', push_syndicate_encrypt( sanitize_text_field( $_POST['site_token'] )...

needs-investigation
Priority::Medium

The code at https://github.com/Automattic/syndication/blob/b47a461679b6c8da8de93c18180aeedc3d4b2c6e/includes/class-syndication-logger.php#L251 has required parameters defined after optional ones (which means that they aren't actually optional), which is an issue with PHP 8. Since this is a private...

confirmed-bug

Initial extensive PHPCS clean-up on the codebase. I tried to address all the WordPress standards where possible and ignored the ones that are valid use cases. I didn't invest much...

**Issue** When we syndicate posts between subsites in a multisite environment, we sometimes end up with multiple versions of the same image in the Media Library. **Details** - We recently...

needs-investigation
Priority::Medium

Hi guys, We're using v1 on a multisite network which will be used as a knowledge base. This plugin is kind of the backbone of our setup and we were...

I've tested this on different sites with different hostings, it's the same. When a new post is published, it doesn't get pushed until we hit the Update button. PS: This...

The Problem: 1. on line [308](https://github.com/Automattic/syndication/blob/master/includes/class-syndication-logger.php#L308): we are asking for a string to be returned. 2. on line [311](https://github.com/Automattic/syndication/blob/master/includes/class-syndication-logger.php#L311): If it's empty, we are converting it to an array 3....