You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,16 @@
1
1
= 1.9.0 =
2
2
3
+
In this release we've added an integration with the **All In One Seo** plugin so you’ll now see personalized suggestions based on your current SEO configuration.
4
+
5
+
Added these recommendations from Ravi:
6
+
7
+
* All In One SEO: [noindex the author archive](https://prpl.fyi/aioseo-author-archive)
8
+
* All In One SEO: [noindex the date archive](https://prpl.fyi/aioseo-date-archive)
9
+
* All In One SEO: [Remove post authors feeds](https://prpl.fyi/aioseo-crawl-optimization-feed-authors)
10
+
* All In One SEO: [Remove comment feeds](https://prpl.fyi/aioseo-crawl-optimization-feed-comments)
11
+
* All In One SEO: [disable the media pages](https://prpl.fyi/aioseo-media-pages)
12
+
* All In One SEO: set your [organization](https://prpl.fyi/aioseo-organization-logo) or [person](https://prpl.fyi/aioseo-person-logo) logo
13
+
3
14
Enhancements:
4
15
5
16
* Add "Show all Recommendations" button to the "Ravi's Recommendations" widget
Copy file name to clipboardExpand all lines: classes/class-suggested-tasks-db.php
+32-14Lines changed: 32 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -52,20 +52,25 @@ public function add( $data ) {
52
52
}
53
53
54
54
// Check if we have an existing task with the same title.
55
-
$posts = $this->get_tasks_by(
55
+
$posts= $this->get_tasks_by(
56
56
[
57
57
'post_status' => [ 'publish', 'trash', 'draft', 'future', 'pending' ], // 'any' doesn't include statuses which have 'exclude_from_search' set to true (trash and pending).
0 commit comments