Version Description
Download this release
Release Info
Developer | automattic |
Plugin | Co-Authors Plus |
Version | 3.4.7 |
Comparing to | |
See all releases |
Code changes from version 3.4.6 to 3.4.7
- CHANGELOG.md +3 -1
- README.md +1 -1
- co-authors-plus.php +2 -2
- readme.txt +2 -2
- template-tags.php +1 -1
CHANGELOG.md
CHANGED
@@ -1,7 +1,9 @@
|
|
1 |
# Changelog for Co-Authors Plus
|
2 |
|
3 |
-
**3.4.
|
|
|
4 |
|
|
|
5 |
* Gravatars for guest authors now display in author select box #767
|
6 |
* Fix non-functional filter button on Guest Author listing page #768
|
7 |
* Added Hebrew translation strings #772
|
1 |
# Changelog for Co-Authors Plus
|
2 |
|
3 |
+
**3.4.7 (May 31, 2021)**
|
4 |
+
* Fix accidental escaping introduced to `coauthors_posts_links()` #797
|
5 |
|
6 |
+
**3.4.6 (May 28, 2021)**
|
7 |
* Gravatars for guest authors now display in author select box #767
|
8 |
* Fix non-functional filter button on Guest Author listing page #768
|
9 |
* Added Hebrew translation strings #772
|
README.md
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
* Contributors: batmoo, danielbachhuber, automattic
|
4 |
* Tags: authors, users, multiple authors, co-authors, multi-author, publishing
|
5 |
-
* Tested up to: 5.7
|
6 |
* Requires at least: 4.1
|
7 |
* Stable tag: 3.4.6
|
8 |
|
2 |
|
3 |
* Contributors: batmoo, danielbachhuber, automattic
|
4 |
* Tags: authors, users, multiple authors, co-authors, multi-author, publishing
|
5 |
+
* Tested up to: 5.7.2
|
6 |
* Requires at least: 4.1
|
7 |
* Stable tag: 3.4.6
|
8 |
|
co-authors-plus.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Co-Authors Plus
|
4 |
Plugin URI: http://wordpress.org/extend/plugins/co-authors-plus/
|
5 |
Description: Allows multiple authors to be assigned to a post. This plugin is an extended version of the Co-Authors plugin developed by Weston Ruter.
|
6 |
-
Version: 3.4.
|
7 |
Author: Mohammad Jangda, Daniel Bachhuber, Automattic
|
8 |
Copyright: 2008-2015 Shared and distributed between Mohammad Jangda, Daniel Bachhuber, Weston Ruter
|
9 |
|
@@ -32,7 +32,7 @@ Co-author - in the context of a single post, a guest author or user assigned to
|
|
32 |
Author - user with the role of author
|
33 |
*/
|
34 |
|
35 |
-
define( 'COAUTHORS_PLUS_VERSION', '3.4.
|
36 |
|
37 |
require_once dirname( __FILE__ ) . '/template-tags.php';
|
38 |
require_once dirname( __FILE__ ) . '/deprecated.php';
|
3 |
Plugin Name: Co-Authors Plus
|
4 |
Plugin URI: http://wordpress.org/extend/plugins/co-authors-plus/
|
5 |
Description: Allows multiple authors to be assigned to a post. This plugin is an extended version of the Co-Authors plugin developed by Weston Ruter.
|
6 |
+
Version: 3.4.7
|
7 |
Author: Mohammad Jangda, Daniel Bachhuber, Automattic
|
8 |
Copyright: 2008-2015 Shared and distributed between Mohammad Jangda, Daniel Bachhuber, Weston Ruter
|
9 |
|
32 |
Author - user with the role of author
|
33 |
*/
|
34 |
|
35 |
+
define( 'COAUTHORS_PLUS_VERSION', '3.4.7' );
|
36 |
|
37 |
require_once dirname( __FILE__ ) . '/template-tags.php';
|
38 |
require_once dirname( __FILE__ ) . '/deprecated.php';
|
readme.txt
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
=== Co-Authors Plus ===
|
2 |
Contributors: batmoo, danielbachhuber, automattic
|
3 |
Tags: authors, users, multiple authors, coauthors, multi-author, publishing
|
4 |
-
Tested up to: 5.7
|
5 |
Requires at least: 4.1
|
6 |
-
Stable tag: 3.4.
|
7 |
|
8 |
Assign multiple bylines to posts, pages, and custom post types via a search-as-you-type input box
|
9 |
|
1 |
=== Co-Authors Plus ===
|
2 |
Contributors: batmoo, danielbachhuber, automattic
|
3 |
Tags: authors, users, multiple authors, coauthors, multi-author, publishing
|
4 |
+
Tested up to: 5.7.2
|
5 |
Requires at least: 4.1
|
6 |
+
Stable tag: 3.4.7
|
7 |
|
8 |
Assign multiple bylines to posts, pages, and custom post types via a search-as-you-type input box
|
9 |
|
template-tags.php
CHANGED
@@ -202,7 +202,7 @@ function coauthors__echo( $tag, $type = 'tag', $separators = array(), $tag_args
|
|
202 |
$output .= $separators['after'];
|
203 |
|
204 |
if ( $echo ) {
|
205 |
-
echo
|
206 |
}
|
207 |
|
208 |
return $output;
|
202 |
$output .= $separators['after'];
|
203 |
|
204 |
if ( $echo ) {
|
205 |
+
echo $output; // phpcs:ignore
|
206 |
}
|
207 |
|
208 |
return $output;
|