PluginProbe
Yoast SEO – Advanced SEO with real-time guidance and built-in AI / 28.5
Yoast SEO – Advanced SEO with real-time guidance and built-in AI v28.5
28.5 28.4 28.3 28.2 28.1 28.0 27.9 27.8 27.7 27.6 27.5 trunk 18.0 18.1 18.2 18.3 18.4 18.4.1 18.5 18.5.1 18.6 18.7 18.8 18.9 19.0 All 129 releases
← All changes | admin/class-admin-recommended-replace-vars.php +3 -3 18.428.5 View file →
@@ -29,9 +29,9 @@
29 29 'post_tag' => [ 'sitename', 'term_title', 'sep' ],
30 30 'post_format' => [ 'sitename', 'term_title', 'sep', 'page' ],
31 31
32 32 // Custom taxonomy.
33 - 'term-in-custom-taxomomy' => [ 'sitename', 'term_title', 'sep', 'term_hierarchy' ],
33 + 'term-in-custom-taxonomy' => [ 'sitename', 'term_title', 'sep', 'term_hierarchy' ],
34 34
35 35 // Settings - archive pages.
36 36 'author_archive' => [ 'sitename', 'title', 'sep', 'page' ],
37 37 'date_archive' => [ 'sitename', 'sep', 'date', 'page' ],
@@ -54,9 +54,9 @@
54 54 if ( array_key_exists( $taxonomy, $recommended_replace_vars ) ) {
55 55 return $taxonomy;
56 56 }
57 57
58 - return 'term-in-custom-taxomomy';
58 + return 'term-in-custom-taxonomy';
59 59 }
60 60
61 61 /**
62 62 * Determines the page type of the current post.
@@ -148,9 +148,9 @@
148 148 public function get_recommended_replacevars() {
149 149 /**
150 150 * Filter: Adds the possibility to add extra recommended replacement variables.
151 151 *
152 - * @api array $additional_replace_vars Empty array to add the replacevars to.
152 + * @param array $additional_replace_vars Empty array to add the replacevars to.
153 153 */
154 154 $recommended_replace_vars = apply_filters( 'wpseo_recommended_replace_vars', $this->recommended_replace_vars );
155 155
156 156 if ( ! is_array( $recommended_replace_vars ) ) {