Yet Another Related Posts Plugin (YARPP) - Version 5.4.0

Version Description

(03-August-2020) = * New: Shortcode support! [yarpp] (documentation) * Enhancement: Adds YARPP score to REST API responses (documentation) * Enhancement: Prepare for default jQuery version update in upcoming WordPress Core * Bugfix: Fixed admin panel tooltips * Bugfix: Fixed admin panel "copy template" button

Download this release

Release Info

Developer jeffparker
Plugin Icon 128x128 Yet Another Related Posts Plugin (YARPP)
Version 5.4.0
Comparing to
See all releases

Code changes from version 5.3.0 to 5.4.0

Files changed (65) hide show
  1. classes/YARPP_Admin.php +1 -1
  2. classes/YARPP_Core.php +6 -4
  3. classes/YARPP_Meta_Box_Display_Feed.php +2 -2
  4. classes/YARPP_Meta_Box_Display_Rest_Api.php +1 -1
  5. classes/YARPP_Meta_Box_Display_Web.php +3 -3
  6. classes/YARPP_Meta_Box_Relatedness.php +1 -1
  7. classes/YARPP_Rest_Api.php +23 -2
  8. classes/YARPP_Shortcode.php +36 -0
  9. includes/phtmls/yarpp_meta_box_template_checkbox.phtml +3 -3
  10. includes/phtmls/yarpp_options.phtml +1 -3
  11. js/options_basic.js +11 -4
  12. lang/yarpp-ar_AR.po +1 -1
  13. lang/yarpp-ar_EG.po +1 -1
  14. lang/yarpp-bg_BG.po +1 -1
  15. lang/yarpp-by_BY.po +1 -1
  16. lang/yarpp-cs_CZ.po +1 -1
  17. lang/yarpp-de_DE.po +1 -1
  18. lang/yarpp-el_CY.po +1 -1
  19. lang/yarpp-el_EL.po +1 -1
  20. lang/yarpp-es_ES.po +1 -1
  21. lang/yarpp-est_EST.po +1 -1
  22. lang/yarpp-fa_IR.po +1 -1
  23. lang/yarpp-fr_FR.po +1 -1
  24. lang/yarpp-gb_IR.po +1 -1
  25. lang/yarpp-ge_KA.po +1 -1
  26. lang/yarpp-gu_IN.po +2 -2
  27. lang/yarpp-he_IL.po +1 -1
  28. lang/yarpp-hi_IN.po +1 -1
  29. lang/yarpp-hr.po +1 -1
  30. lang/yarpp-hu_HU.po +1 -1
  31. lang/yarpp-id_ID.po +1 -1
  32. lang/yarpp-it_IT.po +1 -1
  33. lang/yarpp-ja.po +1 -1
  34. lang/yarpp-kk_KZ.po +1 -1
  35. lang/yarpp-ko_KR.po +1 -1
  36. lang/yarpp-lt_LT.po +2 -2
  37. lang/yarpp-lv_LV.po +1 -1
  38. lang/yarpp-mk-MK.po +1 -1
  39. lang/yarpp-nb_NO.po +1 -1
  40. lang/yarpp-nl_NL.po +1 -1
  41. lang/yarpp-pl_PL.po +1 -1
  42. lang/yarpp-pt_BR.po +1 -1
  43. lang/yarpp-pt_PT.po +1 -1
  44. lang/yarpp-ro_RO.po +1 -1
  45. lang/yarpp-ru_RU.po +1 -1
  46. lang/yarpp-sk_SK.po +1 -1
  47. lang/yarpp-sl_SI.po +1 -1
  48. lang/yarpp-sr_RS.po +1 -1
  49. lang/yarpp-sv_SE.po +1 -1
  50. lang/yarpp-tr_TR.po +1 -1
  51. lang/yarpp-uk_UA.po +1 -1
  52. lang/yarpp-uz_UZ.po +1 -1
  53. lang/yarpp-vi_VN.po +1 -1
  54. lang/yarpp-zh_CN.po +1 -1
  55. lang/yarpp-zh_TW.po +1 -1
  56. readme.txt +50 -30
  57. style/options_basic.css +0 -8
  58. style/options_switch.css +1 -1
  59. yarpp-templates/yarpp-template-example.php +1 -1
  60. yarpp-templates/yarpp-template-list.php +1 -1
  61. yarpp-templates/yarpp-template-multilingual.php +1 -1
  62. yarpp-templates/yarpp-template-photoblog.php +1 -1
  63. yarpp-templates/yarpp-template-random.php +1 -1
  64. yarpp-templates/yarpp-template-thumbnail.php +1 -1
  65. yarpp.php +3 -2
classes/YARPP_Admin.php CHANGED
@@ -539,7 +539,7 @@ class YARPP_Admin {
539
  margin: 10px 0;
540
  }
541
  #yarpp-related-posts .spinner {
542
- float: none; visibility: hidden; opacity: 1; margin: 5px 0 0 7px;
543
  }
544
  </style>
545
  <?php
539
  margin: 10px 0;
540
  }
541
  #yarpp-related-posts .spinner {
542
+ float: none; visibility: hidden; opacity: 1; margin: 5px 7px 0 7px;
543
  }
544
  </style>
545
  <?php
classes/YARPP_Core.php CHANGED
@@ -105,6 +105,8 @@ class YARPP {
105
  $this->admin = new YARPP_Admin($this);
106
  $this->enforce();
107
  }
 
 
108
  }
109
 
110
  /*
@@ -1177,10 +1179,10 @@ class YARPP {
1177
  '<p>'.
1178
  sprintf(
1179
  __(
1180
- "Related posts brought to you by <a href='%s' title='WordPress Related Posts Plugin' target='_blank'>YARPP</a>.",
1181
  'yarpp'
1182
  ),
1183
- 'https://wordpress.org/plugins/yet-another-related-posts-plugin/'
1184
  ).
1185
  "</p>\n";
1186
  }
@@ -1353,10 +1355,10 @@ class YARPP {
1353
  '<p>'.
1354
  sprintf(
1355
  __(
1356
- "Related posts brought to you by <a href='%s' title='WordPress Related Posts Plugin' target='_blank'>YARPP</a>.",
1357
  'yarpp'
1358
  ),
1359
- 'https://wordpress.org/plugins/yet-another-related-posts-plugin/'
1360
  ).
1361
  "</p>\n";
1362
  }
105
  $this->admin = new YARPP_Admin($this);
106
  $this->enforce();
107
  }
108
+ $shortcode = new YARPP_Shortcode();
109
+ $shortcode->register();
110
  }
111
 
112
  /*
1179
  '<p>'.
1180
  sprintf(
1181
  __(
1182
+ "Powered by <a href='%s' title='WordPress Related Posts Plugin' target='_blank'>YARPP</a>.",
1183
  'yarpp'
1184
  ),
1185
+ 'https://yarpp.com'
1186
  ).
1187
  "</p>\n";
1188
  }
1355
  '<p>'.
1356
  sprintf(
1357
  __(
1358
+ "Powered by <a href='%s' title='WordPress Related Posts Plugin' target='_blank'>YARPP</a>.",
1359
  'yarpp'
1360
  ),
1361
+ 'https://yarpp.com'
1362
  ).
1363
  "</p>\n";
1364
  }
classes/YARPP_Meta_Box_Display_Feed.php CHANGED
@@ -4,7 +4,7 @@ class YARPP_Meta_Box_Display_Feed extends YARPP_Meta_Box {
4
  public function display() {
5
  global $yarpp;
6
 
7
- echo "<div style='overflow:auto'>";
8
  echo '<div class="rss_displayed yarpp_code_display"';
9
  if ( !$yarpp->get_option('code_display') )
10
  echo ' style="display: none;"';
@@ -55,6 +55,6 @@ class YARPP_Meta_Box_Display_Feed extends YARPP_Meta_Box {
55
 
56
  $this->displayorder( 'rss_order', 'rss_displayed' );
57
 
58
- $this->checkbox( 'rss_promote_yarpp', __( "Help promote Yet Another Related Posts Plugin?", 'yarpp' ) . " <span class='yarpp_help' data-help='" . esc_attr( sprintf( __( "This option will add the code %s. Try turning it on, updating your options, and see the code in the code example to the right. These links are greatly appreciated.", 'yarpp' ), "<code>" . htmlspecialchars( sprintf( __( "Related posts brought to you by <a href='%s' title='WordPress Related Posts Plugin' target='_blank'>YARPP</a>.", 'yarpp' ), 'https://yarpp.com' ) )."</code>" ) ) . "'>&nbsp;</span>", 'rss_displayed' );
59
  }
60
  }
4
  public function display() {
5
  global $yarpp;
6
 
7
+ echo "<div>";
8
  echo '<div class="rss_displayed yarpp_code_display"';
9
  if ( !$yarpp->get_option('code_display') )
10
  echo ' style="display: none;"';
55
 
56
  $this->displayorder( 'rss_order', 'rss_displayed' );
57
 
58
+ $this->checkbox( 'rss_promote_yarpp', __( "Link to YARPP?", 'yarpp' ) . " <span class='yarpp_help' data-help='" . esc_attr( sprintf( __( "This option will add the code %s These links are greatly appreciated and keeps us motivated.", 'yarpp' ), "<code>" . htmlspecialchars( sprintf( __( "Powered by <a href='%s' title='WordPress Related Posts Plugin' target='_blank'>YARPP</a>.", 'yarpp' ), 'https://yarpp.com' ) )."</code>" ) ) . "'>&nbsp;</span>", 'rss_displayed' );
59
  }
60
  }
classes/YARPP_Meta_Box_Display_Rest_Api.php CHANGED
@@ -5,7 +5,7 @@ class YARPP_Meta_Box_Display_Rest_Api extends YARPP_Meta_Box {
5
  echo "<div>";
6
  $this->checkbox( 'rest_api_display', __( "Display related posts in REST API?", 'yarpp' )." <span class='yarpp_help' data-help='" . esc_attr( __( "This option adds related posts to the REST API.", 'yarpp' ) ) . "'>&nbsp;</span>", '' );
7
  echo '<a href="https://support.shareaholic.com/hc/en-us/articles/360046456752">';
8
- esc_html_e('Read the REST API documentation.');
9
  echo "</a></div>";
10
  }
11
  }
5
  echo "<div>";
6
  $this->checkbox( 'rest_api_display', __( "Display related posts in REST API?", 'yarpp' )." <span class='yarpp_help' data-help='" . esc_attr( __( "This option adds related posts to the REST API.", 'yarpp' ) ) . "'>&nbsp;</span>", '' );
7
  echo '<a href="https://support.shareaholic.com/hc/en-us/articles/360046456752">';
8
+ esc_html_e('Read the REST API documentation.', 'yarpp');
9
  echo "</a></div>";
10
  }
11
  }
classes/YARPP_Meta_Box_Display_Web.php CHANGED
@@ -4,7 +4,7 @@ class YARPP_Meta_Box_Display_Web extends YARPP_Meta_Box {
4
  public function display() {
5
  global $yarpp;
6
 
7
- echo "<div style='overflow:auto'>";
8
  echo '<div class="yarpp_code_display"';
9
  if ( !$yarpp->get_option('code_display') )
10
  echo ' style="display: none;"';
@@ -12,7 +12,7 @@ class YARPP_Meta_Box_Display_Web extends YARPP_Meta_Box {
12
 
13
  echo "<div class='yarpp_form_row yarpp_form_post_types'><div>";
14
  echo 'Automatically display related content from YARPP Basic on: ';
15
- echo " <span class='yarpp_help' data-help='" . esc_attr( __( "This option automatically displays related posts right after the content on single entry pages. If this option is off, you will need to manually insert <code>related_posts()</code> or variants (<code>related_pages()</code> and <code>related_entries()</code>) into your theme files.", 'yarpp' ) ) . "'>&nbsp;</span>&nbsp;&nbsp;";
16
  echo "</div><div>";
17
  $post_types = yarpp_get_option( 'auto_display_post_types' );
18
  foreach ($yarpp->get_post_types('objects') as $post_type) {
@@ -65,6 +65,6 @@ class YARPP_Meta_Box_Display_Web extends YARPP_Meta_Box {
65
  echo "</div>";
66
 
67
  $this->displayorder( 'order' );
68
- $this->checkbox( 'promote_yarpp', __( "Help promote Yet Another Related Posts Plugin?", 'yarpp' ) . " <span class='yarpp_help' data-help='" . esc_attr( sprintf( __( "This option will add the code %s. Try turning it on, updating your options, and see the code in the code example to the right. These links are greatly appreciated.", 'yarpp' ), "<code>" . htmlspecialchars( sprintf( __( "Related posts brought to you by <a href='%s' title='WordPress Related Posts Plugin' target='_blank'>YARPP</a>.", 'yarpp' ), 'https://yarpp.com' ) )."</code>" ) ) . "'>&nbsp;</span>", 'yarpp' );
69
  }
70
  }
4
  public function display() {
5
  global $yarpp;
6
 
7
+ echo "<div>";
8
  echo '<div class="yarpp_code_display"';
9
  if ( !$yarpp->get_option('code_display') )
10
  echo ' style="display: none;"';
12
 
13
  echo "<div class='yarpp_form_row yarpp_form_post_types'><div>";
14
  echo 'Automatically display related content from YARPP Basic on: ';
15
+ echo " <span class='yarpp_help' data-help='" . esc_attr( __( "This option automatically displays related posts right after the content on single entry pages. If this option is off, you will need to manually insert the shortcode <code>[yarpp]</code>, or PHP functions <code>related_posts()</code> or variants (<code>related_pages()</code> and <code>related_entries()</code>) into your theme files.", 'yarpp' ) ) . "'>&nbsp;</span>&nbsp;&nbsp;";
16
  echo "</div><div>";
17
  $post_types = yarpp_get_option( 'auto_display_post_types' );
18
  foreach ($yarpp->get_post_types('objects') as $post_type) {
65
  echo "</div>";
66
 
67
  $this->displayorder( 'order' );
68
+ $this->checkbox( 'promote_yarpp', __( "Link to YARPP?", 'yarpp' ) . " <span class='yarpp_help' data-help='" . esc_attr( sprintf( __( "This option will add the code %s These links are greatly appreciated and keeps us motivated.", 'yarpp' ), "<code>" . htmlspecialchars( sprintf( __( "Powered by <a href='%s' title='WordPress Related Posts Plugin' target='_blank'>YARPP</a>.", 'yarpp' ), 'https://yarpp.com' ) )."</code>" ) ) . "'>&nbsp;</span>", 'yarpp' );
69
  }
70
  }
classes/YARPP_Meta_Box_Relatedness.php CHANGED
@@ -4,7 +4,7 @@ class YARPP_Meta_Box_Relatedness extends YARPP_Meta_Box {
4
  public function display() {
5
  global $yarpp;
6
  ?>
7
- <p><?php _e( 'YARPP limits the related posts list by (1) a maximum number and (2) a <em>match threshold</em>.', 'yarpp' ); ?> <span class='yarpp_help' data-help="<?php echo esc_attr( __( 'The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post\'s related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site.', 'yarpp' ) ); ?>">&nbsp;</span></p>
8
 
9
  <?php
10
  $this->textbox( 'threshold', __( 'Match threshold:', 'yarpp' ) );
4
  public function display() {
5
  global $yarpp;
6
  ?>
7
+ <p><?php _e( 'YARPP limits the related posts list by (1) a maximum number and (2) a <em>match threshold</em>.', 'yarpp' ); ?> <span class='yarpp_help' data-help="<?php echo esc_attr( __( 'The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshold, take a look at some post\'s related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site.', 'yarpp' ) ); ?>">&nbsp;</span></p>
8
 
9
  <?php
10
  $this->textbox( 'threshold', __( 'Match threshold:', 'yarpp' ) );
classes/YARPP_Rest_Api.php CHANGED
@@ -38,11 +38,27 @@ class YARPP_Rest_Api extends WP_REST_Controller{
38
  'type' => 'integer',
39
  ),
40
  ),
41
- 'schema' => array( $this->get_posts_controller('post'), 'get_public_item_schema' ),
42
  ));
43
  }
44
  }
45
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
  /**
47
  * @param WP_REST_Request $request
48
  *
@@ -70,6 +86,7 @@ class YARPP_Rest_Api extends WP_REST_Controller{
70
  return true;
71
  }
72
 
 
73
  /**
74
  * Gets available arguments for related-posts endpoint.
75
  *
@@ -177,8 +194,12 @@ class YARPP_Rest_Api extends WP_REST_Controller{
177
  foreach($related_posts as $related_post){
178
  foreach($read_controller_posts as $read_controller_post){
179
  if($related_post->ID === $read_controller_post['id']){
 
 
 
 
 
180
  $ordered_rest_results[] = $read_controller_post;
181
- break;
182
  }
183
  }
184
  }
38
  'type' => 'integer',
39
  ),
40
  ),
41
+ 'schema' => array( $this, 'get_public_item_schema' ),
42
  ));
43
  }
44
  }
45
 
46
+ /**
47
+ * Wraps WP_REST_Posts_Controller's schema, and adds YARPP-specific fields.
48
+ *
49
+ * @return array
50
+ */
51
+ public function get_public_item_schema() {
52
+ $posts_schema = $this->get_posts_controller('post')->get_public_item_schema();
53
+ $posts_schema['properties']['score'] = array(
54
+ 'description' => __('YARPP relatedness score', 'yarpp'),
55
+ 'type' => 'number',
56
+ 'context' => array('view', 'edit', 'embed'),
57
+ 'readonly' => true,
58
+ );
59
+ return $posts_schema;
60
+ }
61
+
62
  /**
63
  * @param WP_REST_Request $request
64
  *
86
  return true;
87
  }
88
 
89
+
90
  /**
91
  * Gets available arguments for related-posts endpoint.
92
  *
194
  foreach($related_posts as $related_post){
195
  foreach($read_controller_posts as $read_controller_post){
196
  if($related_post->ID === $read_controller_post['id']){
197
+ // Add score, but before _links.
198
+ $links = $read_controller_post['_links'];
199
+ unset($read_controller_post['_links']);
200
+ $read_controller_post['score'] = (float)$related_post->score;
201
+ $read_controller_post['_links'] = $links;
202
  $ordered_rest_results[] = $read_controller_post;
 
203
  }
204
  }
205
  }
classes/YARPP_Shortcode.php ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+
4
+
5
+ /**
6
+ * Class YARPP_Shortcode
7
+ * Adds the YARPP shortcode.
8
+ *
9
+ * @author Mike Nelson
10
+ * @since 5.4.0
11
+ */
12
+ class YARPP_Shortcode {
13
+ public function register() {
14
+ add_shortcode(
15
+ 'yarpp',
16
+ array($this,'render')
17
+ );
18
+ }
19
+
20
+ /**
21
+ * @param $atts
22
+ *
23
+ * @return string
24
+ */
25
+ public function render($atts) {
26
+ /** @global $yarpp YARPP */
27
+ global $yarpp;
28
+ $post = get_post();
29
+ if($post instanceof WP_Post){
30
+ return $yarpp->display_related($post->ID,array('domain' => 'shortcode'), false);
31
+ } else {
32
+ return '<!-- YARPP shortcode called but no reference post found. It was probably called outside "the loop".-->';
33
+ }
34
+
35
+ }
36
+ }
includes/phtmls/yarpp_meta_box_template_checkbox.phtml CHANGED
@@ -1,12 +1,12 @@
1
  <?php
2
  $customHelp = null;
3
  if (!$this->yarpp->diagnostic_custom_templates()) {
4
- $customHelp = __('This option is disabled because no YARPP templates were found in your theme.', 'yarpp');
5
  }
6
  if ($this->offer_copy_templates()) {
7
  $customHelp .=
8
- ' '.__('Would you like to copy some sample templates bundled with YARPP into your theme?', 'yarpp').
9
- '<input type="button" class="button button-small yarpp_copy_templates_button" value="'.esc_attr(__('Copy Templates', 'yarpp')).'"/>';
10
  }
11
  ?>
12
 
1
  <?php
2
  $customHelp = null;
3
  if (!$this->yarpp->diagnostic_custom_templates()) {
4
+ $customHelp = __('This option is disabled because no YARPP templates were found in your active theme folder.', 'yarpp');
5
  }
6
  if ($this->offer_copy_templates()) {
7
  $customHelp .=
8
+ ' '.__('Would you like to copy some sample templates bundled with YARPP into your active theme folder?', 'yarpp').
9
+ '<br /><br /><input type="button" class="button button-small yarpp_copy_templates_button" value="'.esc_attr(__('Copy Templates', 'yarpp')).'"/><span class="spinner"></span>';
10
  }
11
  ?>
12
 
includes/phtmls/yarpp_options.phtml CHANGED
@@ -9,9 +9,7 @@
9
  </ul>
10
 
11
  <div class="yarpp_switch_content">
12
- <p>
13
- The settings bellow allow you to configure the Basic version of Yet Another Related Post Plugin (YARPP).
14
- </p>
15
  </div>
16
  </div>
17
 
9
  </ul>
10
 
11
  <div class="yarpp_switch_content">
12
+ <p>The settings below allow you to configure the Basic version of Yet Another Related Post Plugin (YARPP).</p>
 
 
13
  </div>
14
  </div>
15
 
js/options_basic.js CHANGED
@@ -183,6 +183,17 @@ jQuery(function($) {
183
  that.mouseleave(function () {
184
  pointer.pointer('close');
185
  });
 
 
 
 
 
 
 
 
 
 
 
186
  });
187
  $('.yarpp_template_button:not(.disabled)').click(function() {
188
  $(this).siblings('input')
@@ -191,10 +202,6 @@ jQuery(function($) {
191
  $(this).siblings().removeClass('active');
192
  $(this).addClass('active');
193
  });
194
-
195
- $('.yarpp_copy_templates_button').live('click', function() {
196
- window.location = window.location + (window.location.search.length ? '&' : '?') + 'action=copy_templates&_ajax_nonce=' + $('#yarpp_copy_templates-nonce').val();
197
- });
198
 
199
  function template_info() {
200
  var template = $(this).find('option:selected'),
183
  that.mouseleave(function () {
184
  pointer.pointer('close');
185
  });
186
+
187
+ // Only setup the copy templates button once it exists.
188
+ $('.yarpp_copy_templates_button').on('click', function() {
189
+ $copy_templates_button = $(this);
190
+ $spinner = $copy_templates_button.siblings('.spinner');
191
+
192
+ $copy_templates_button.addClass( 'disabled' );
193
+ $spinner.addClass('is-active');
194
+
195
+ window.location = window.location + (window.location.search.length ? '&' : '?') + 'action=copy_templates&_ajax_nonce=' + $('#yarpp_copy_templates-nonce').val();
196
+ });
197
  });
198
  $('.yarpp_template_button:not(.disabled)').click(function() {
199
  $(this).siblings('input')
202
  $(this).siblings().removeClass('active');
203
  $(this).addClass('active');
204
  });
 
 
 
 
205
 
206
  function template_info() {
207
  var template = $(this).find('option:selected'),
lang/yarpp-ar_AR.po CHANGED
@@ -413,7 +413,7 @@ msgstr "حفظ الخيارات!"
413
 
414
  #: yarpp_options.php:310
415
  #@ yarpp
416
- msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
417
  msgstr "ارتفاع عتبة التشابه ، إلا أن تشديد العينة ، وسيحصلون على أقل ناتج قياسي. العتبة الافتراضي هو 5. إذا كنت ترغب في العثور على عتبة المقبول ، تجربة مع رسائل متعددة. يمكنك ان ترى ما ورسائل تصل ما قيمها من التشابه ، والتي يمكن تحديد مستوى مقبول لموقعك."
418
 
419
  #: yarpp_options.php:538
413
 
414
  #: yarpp_options.php:310
415
  #@ yarpp
416
+ msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
417
  msgstr "ارتفاع عتبة التشابه ، إلا أن تشديد العينة ، وسيحصلون على أقل ناتج قياسي. العتبة الافتراضي هو 5. إذا كنت ترغب في العثور على عتبة المقبول ، تجربة مع رسائل متعددة. يمكنك ان ترى ما ورسائل تصل ما قيمها من التشابه ، والتي يمكن تحديد مستوى مقبول لموقعك."
418
 
419
  #: yarpp_options.php:538
lang/yarpp-ar_EG.po CHANGED
@@ -292,7 +292,7 @@ msgstr "المزيد&gt;"
292
 
293
  #: yarpp_options.php:310
294
  #@ yarpp
295
- msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
296
  msgstr "كلما ذاد ارتفاع نسبة التشابه ، كلما إزداد التقيد ، وتحصل على عدد أقل من المحتويات المتشابهه عموما. الافتراضي 5. إذا كنت تريد معرفة الرقم المناسب لك ، إنظر على المحتوياات ذات الصلة لأي من مشاراكاتك ودرجاتهم. يمكنك ان ترى ما هي أنواع المحتوياات ذات الصلة ويجري انتقاؤها ورقم التشابه الخاص بكل مشاركة ، ثم على هذا الأساس حدد نسبة مناسبة لموقعك."
297
 
298
  #: yarpp_options.php:315
292
 
293
  #: yarpp_options.php:310
294
  #@ yarpp
295
+ msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
296
  msgstr "كلما ذاد ارتفاع نسبة التشابه ، كلما إزداد التقيد ، وتحصل على عدد أقل من المحتويات المتشابهه عموما. الافتراضي 5. إذا كنت تريد معرفة الرقم المناسب لك ، إنظر على المحتوياات ذات الصلة لأي من مشاراكاتك ودرجاتهم. يمكنك ان ترى ما هي أنواع المحتوياات ذات الصلة ويجري انتقاؤها ورقم التشابه الخاص بكل مشاركة ، ثم على هذا الأساس حدد نسبة مناسبة لموقعك."
297
 
298
  #: yarpp_options.php:315
lang/yarpp-bg_BG.po CHANGED
@@ -292,7 +292,7 @@ msgstr "повече&gt;"
292
 
293
  #: yarpp_options.php:310
294
  #@ yarpp
295
- msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
296
  msgstr "Колкото е поголям размера на сродност, толкова помалко сродни публикации се намират. Размера на сродност по подразбиране е 5. Ако искате да намерите подходящ размер на сходност погледнете сродните постове и техния резултат. Вижте какви резултати връща и какви публикации се появяват. По този начин ще определите размера на сродност който най-много ве устройва."
297
 
298
  #: yarpp_options.php:316
292
 
293
  #: yarpp_options.php:310
294
  #@ yarpp
295
+ msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
296
  msgstr "Колкото е поголям размера на сродност, толкова помалко сродни публикации се намират. Размера на сродност по подразбиране е 5. Ако искате да намерите подходящ размер на сходност погледнете сродните постове и техния резултат. Вижте какви резултати връща и какви публикации се появяват. По този начин ще определите размера на сродност който най-много ве устройва."
297
 
298
  #: yarpp_options.php:316
lang/yarpp-by_BY.po CHANGED
@@ -389,7 +389,7 @@ msgstr "Налады захаваныя!"
389
 
390
  #: options-meta-boxes.php:124
391
  #@ yarpp
392
- msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
393
  msgstr "Чым вышэй парог падобнасці, тым стражэй выбарка, і тым менш атрымаеце запісаў на выхадзе. Па-змаўчанню парог роўны 5. Калі жадаеце знайсці приемлимые парогавыя значэнні, паэксперыментуйце з некалькімі паведамленнямі. Вы зможаце ўбачыць, якія паведамленні выходзяць наверх і якія ў іх значэння падабенства, па якіх можна вызначыць приемлимый узровень для вашага сайта."
394
 
395
  #: yarpp_options.php:279
389
 
390
  #: options-meta-boxes.php:124
391
  #@ yarpp
392
+ msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
393
  msgstr "Чым вышэй парог падобнасці, тым стражэй выбарка, і тым менш атрымаеце запісаў на выхадзе. Па-змаўчанню парог роўны 5. Калі жадаеце знайсці приемлимые парогавыя значэнні, паэксперыментуйце з некалькімі паведамленнямі. Вы зможаце ўбачыць, якія паведамленні выходзяць наверх і якія ў іх значэння падабенства, па якіх можна вызначыць приемлимый узровень для вашага сайта."
394
 
395
  #: yarpp_options.php:279
lang/yarpp-cs_CZ.po CHANGED
@@ -249,7 +249,7 @@ msgstr "YARPP omezuje seznam podobných článků na základě (1) nastaveného
249
 
250
  #: options-meta-boxes.php:153
251
  #@ yarpp
252
- msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
253
  msgstr "Čím vyšší prahovou hodnotu (tj. přísnější omezení) nastavíte, tím méně se většinou podobných článků zobrazí. Standardní prahová hodnota je nastavena na hodnotu 5. Jestliže chcete najít odpovídající prahovou hodnotu, prohlédněte si, jaké články s jakou prahovou hodnotou se zobrazují jako podobné články na webu. Zjistíte tak, jaké druhy článků jsou zobrazovány mezi podobnými články a jaké mají skóre relevance (zobrazuje se v závorce za názvem článku), což vám pomůže nastavit prahovou hodnotu pro váš web."
254
 
255
  #: options-meta-boxes.php:159
249
 
250
  #: options-meta-boxes.php:153
251
  #@ yarpp
252
+ msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
253
  msgstr "Čím vyšší prahovou hodnotu (tj. přísnější omezení) nastavíte, tím méně se většinou podobných článků zobrazí. Standardní prahová hodnota je nastavena na hodnotu 5. Jestliže chcete najít odpovídající prahovou hodnotu, prohlédněte si, jaké články s jakou prahovou hodnotou se zobrazují jako podobné články na webu. Zjistíte tak, jaké druhy článků jsou zobrazovány mezi podobnými články a jaké mají skóre relevance (zobrazuje se v závorce za názvem článku), což vám pomůže nastavit prahovou hodnotu pro váš web."
254
 
255
  #: options-meta-boxes.php:159
lang/yarpp-de_DE.po CHANGED
@@ -398,7 +398,7 @@ msgstr "Einstellungen gespeichert!"
398
 
399
  #: yarpp_options.php:311
400
  #@ yarpp
401
- msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
402
  msgstr "Umso höher Sie den Relevanz-Wert einstellen, desto weniger ähnliche Artikel werden angezeigt, da Sie die Auswahl beschränken. Der Standardwert ist 5. Um einen guten Wert zu finden, schauen Sie sich das Ergebnis Ihrer bisherigen ähnlichen Artikeln an. So finden Sie heraus, wie sie die Relevanz-Wert beeinflussen müssen um ein gutes Ergebnis zu erhalten. "
403
 
404
  #: yarpp_options.php:550
398
 
399
  #: yarpp_options.php:311
400
  #@ yarpp
401
+ msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
402
  msgstr "Umso höher Sie den Relevanz-Wert einstellen, desto weniger ähnliche Artikel werden angezeigt, da Sie die Auswahl beschränken. Der Standardwert ist 5. Um einen guten Wert zu finden, schauen Sie sich das Ergebnis Ihrer bisherigen ähnlichen Artikeln an. So finden Sie heraus, wie sie die Relevanz-Wert beeinflussen müssen um ein gutes Ergebnis zu erhalten. "
403
 
404
  #: yarpp_options.php:550
lang/yarpp-el_CY.po CHANGED
@@ -296,7 +296,7 @@ msgstr "περισσότερα&gt;"
296
 
297
  #: yarpp_options.php:311
298
  #@ yarpp
299
- msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
300
  msgstr "Όσο πιο υψηλό είναι το όριο σχετικότητας τόσο περιορίζονται τα εμφανιζόμενα σχετικά άρθρα. Το default όριο σχετικότητας είναι 5. Για να προσαρμόσετε το κατάλληλο στο blog σας όριο σχετικότητας ελέγξτε τα εμφανιζόμενα αποτελέσματα και την βαθμολογία τους. "
301
 
302
  #: yarpp_options.php:316
296
 
297
  #: yarpp_options.php:311
298
  #@ yarpp
299
+ msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
300
  msgstr "Όσο πιο υψηλό είναι το όριο σχετικότητας τόσο περιορίζονται τα εμφανιζόμενα σχετικά άρθρα. Το default όριο σχετικότητας είναι 5. Για να προσαρμόσετε το κατάλληλο στο blog σας όριο σχετικότητας ελέγξτε τα εμφανιζόμενα αποτελέσματα και την βαθμολογία τους. "
301
 
302
  #: yarpp_options.php:316
lang/yarpp-el_EL.po CHANGED
@@ -296,7 +296,7 @@ msgstr "περισσότερα&gt;"
296
 
297
  #: yarpp_options.php:311
298
  #@ yarpp
299
- msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
300
  msgstr "Όσο πιο υψηλό είναι το όριο σχετικότητας τόσο περιορίζονται τα εμφανιζόμενα σχετικά άρθρα. Το default όριο σχετικότητας είναι 5. Για να προσαρμόσετε το κατάλληλο στο blog σας όριο σχετικότητας ελέγξτε τα εμφανιζόμενα αποτελέσματα και την βαθμολογία τους. "
301
 
302
  #: yarpp_options.php:316
296
 
297
  #: yarpp_options.php:311
298
  #@ yarpp
299
+ msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
300
  msgstr "Όσο πιο υψηλό είναι το όριο σχετικότητας τόσο περιορίζονται τα εμφανιζόμενα σχετικά άρθρα. Το default όριο σχετικότητας είναι 5. Για να προσαρμόσετε το κατάλληλο στο blog σας όριο σχετικότητας ελέγξτε τα εμφανιζόμενα αποτελέσματα και την βαθμολογία τους. "
301
 
302
  #: yarpp_options.php:316
lang/yarpp-es_ES.po CHANGED
@@ -288,7 +288,7 @@ msgstr "más&gt;"
288
 
289
  #@ yarpp
290
  #: yarpp_options.php:311
291
- msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
292
  msgstr "Mientras más alto el umbral de combinación, más restrictivo, y en total, obtienes menos Publicaciones Relacionadas. La falta que combina o concuerda como límite, es 5. Si quieres encontrar una combinación apropiada para el umbral en un número límite, da un vistazo a algunas Publicaciones Relacionadas que se pueden visualizar y sus calificaciones, y determina un tamaño límite apropiado para tu sitio."
293
 
294
  #@ yarpp
288
 
289
  #@ yarpp
290
  #: yarpp_options.php:311
291
+ msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
292
  msgstr "Mientras más alto el umbral de combinación, más restrictivo, y en total, obtienes menos Publicaciones Relacionadas. La falta que combina o concuerda como límite, es 5. Si quieres encontrar una combinación apropiada para el umbral en un número límite, da un vistazo a algunas Publicaciones Relacionadas que se pueden visualizar y sus calificaciones, y determina un tamaño límite apropiado para tu sitio."
293
 
294
  #@ yarpp
lang/yarpp-est_EST.po CHANGED
@@ -424,7 +424,7 @@ msgstr "Seaded on salvestatud!"
424
  msgid ""
425
  "The higher the match threshold, the more restrictive, and you get less "
426
  "related posts overall. The default match threshold is 5. If you want to find "
427
- "an appropriate match threshhold, take a look at some post's related posts "
428
  "display and their scores. You can see what kinds of related posts are being "
429
  "picked up and with what kind of match scores, and determine an appropriate "
430
  "threshold for your site."
424
  msgid ""
425
  "The higher the match threshold, the more restrictive, and you get less "
426
  "related posts overall. The default match threshold is 5. If you want to find "
427
+ "an appropriate match threshold, take a look at some post's related posts "
428
  "display and their scores. You can see what kinds of related posts are being "
429
  "picked up and with what kind of match scores, and determine an appropriate "
430
  "threshold for your site."
lang/yarpp-fa_IR.po CHANGED
@@ -399,7 +399,7 @@ msgstr "ذخیره تنظیمات"
399
 
400
  #: options-meta-boxes.php:124
401
  #@ yarpp
402
- msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
403
  msgstr "هر چه حداقل تطبیق کمتر شود، نتیجه حساس تر و تعداد پست های مرتبط کمتر می شود. مقدار پیش فرض آن 5 است. برای اینکه مقدار مطلوب آن را بیابید به امتیاز تطبیق برخی از پست ها نگاهی بیاندازید."
404
 
405
  #: yarpp_options.php:280
399
 
400
  #: options-meta-boxes.php:124
401
  #@ yarpp
402
+ msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
403
  msgstr "هر چه حداقل تطبیق کمتر شود، نتیجه حساس تر و تعداد پست های مرتبط کمتر می شود. مقدار پیش فرض آن 5 است. برای اینکه مقدار مطلوب آن را بیابید به امتیاز تطبیق برخی از پست ها نگاهی بیاندازید."
404
 
405
  #: yarpp_options.php:280
lang/yarpp-fr_FR.po CHANGED
@@ -345,7 +345,7 @@ msgstr "La liste d’entrées similaires YARPP est déterminée par: 1) un nombr
345
 
346
  #: options-meta-boxes.php:210
347
  #@ yarpp
348
- msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
349
  msgstr "Plus le seuil de similarité sera élevé, plus la sélection sera restrictive, et les listes d’entrées similaires présenteront, dans l’ensemble, moins d’éléments. La valeur du seuil de similarité, par défaut, est fixée à 5. Faites des essais avec différentes valeurs, afin de déterminer le seuil de similarité le mieux adapté à votre site et à vos entrées."
350
 
351
  #: options-meta-boxes.php:213
345
 
346
  #: options-meta-boxes.php:210
347
  #@ yarpp
348
+ msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
349
  msgstr "Plus le seuil de similarité sera élevé, plus la sélection sera restrictive, et les listes d’entrées similaires présenteront, dans l’ensemble, moins d’éléments. La valeur du seuil de similarité, par défaut, est fixée à 5. Faites des essais avec différentes valeurs, afin de déterminer le seuil de similarité le mieux adapté à votre site et à vos entrées."
350
 
351
  #: options-meta-boxes.php:213
lang/yarpp-gb_IR.po CHANGED
@@ -381,7 +381,7 @@ msgstr "Roghanna shábháil!"
381
 
382
  #: options-meta-boxes.php:124
383
  #@ yarpp
384
- msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
385
  msgstr "Dá airde an tairseach do mhargadh an níos sriantaí, agus gheobhaidh tú post níos lú a bhaineann iomlán. Tá an tairseach do chluiche réamhshocraithe 5. Más mian leat teacht ar an tairseach chluiche iomchuí, a chur le breathnú ar roinnt iar's post a bhaineann le taispeáint agus a n-scóir. Is féidir leat a fheiceáil cad iad na cineálacha post a bhaineann mbailítear agus le cén cineál na scóir mheaitseáil, agus tairseach chuí ar do shuíomh a chinneadh."
386
 
387
  #: yarpp_options.php:268
381
 
382
  #: options-meta-boxes.php:124
383
  #@ yarpp
384
+ msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
385
  msgstr "Dá airde an tairseach do mhargadh an níos sriantaí, agus gheobhaidh tú post níos lú a bhaineann iomlán. Tá an tairseach do chluiche réamhshocraithe 5. Más mian leat teacht ar an tairseach chluiche iomchuí, a chur le breathnú ar roinnt iar's post a bhaineann le taispeáint agus a n-scóir. Is féidir leat a fheiceáil cad iad na cineálacha post a bhaineann mbailítear agus le cén cineál na scóir mheaitseáil, agus tairseach chuí ar do shuíomh a chinneadh."
386
 
387
  #: yarpp_options.php:268
lang/yarpp-ge_KA.po CHANGED
@@ -389,7 +389,7 @@ msgstr "პარამეტრები შენახულია!"
389
 
390
  #: options-meta-boxes.php:124
391
  #@ yarpp
392
- msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
393
  msgstr "რაც მეტია მსგავსების ზღურბლი, მით უფრო მკაცრად ხდება არჩევა და მით უფრო ნაკლები ჩანაწერი იძებნება. ზღურბლის ნაგულისხმევი ზომაა 5. თუ გსურთ მოძებნოთ ზღურბლის დასაშვები მნიშვნელობები, მოსინჯეთ ზოგიერთი შეტყობინებების მაგალითზე. შეძლებთ ნახოთ რომელი ჩანაწერები გამოდის ზემოთ და მსგავსების რა მნიშვნელობა აქვს მათ, რის მიხედვითაც შეგიძლიათ განსაზღვროთ თქვენი საიტისთვის მისაღები დონე."
394
 
395
  #: yarpp_options.php:279
389
 
390
  #: options-meta-boxes.php:124
391
  #@ yarpp
392
+ msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
393
  msgstr "რაც მეტია მსგავსების ზღურბლი, მით უფრო მკაცრად ხდება არჩევა და მით უფრო ნაკლები ჩანაწერი იძებნება. ზღურბლის ნაგულისხმევი ზომაა 5. თუ გსურთ მოძებნოთ ზღურბლის დასაშვები მნიშვნელობები, მოსინჯეთ ზოგიერთი შეტყობინებების მაგალითზე. შეძლებთ ნახოთ რომელი ჩანაწერები გამოდის ზემოთ და მსგავსების რა მნიშვნელობა აქვს მათ, რის მიხედვითაც შეგიძლიათ განსაზღვროთ თქვენი საიტისთვის მისაღები დონე."
394
 
395
  #: yarpp_options.php:279
lang/yarpp-gu_IN.po CHANGED
@@ -388,8 +388,8 @@ msgstr "વિકલ્પો સાચવ્યા!"
388
 
389
  #@ yarpp
390
  #: options-meta-boxes.php:124
391
- msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
392
- msgstr "ઊંચી મેચ થ્રેશોલ્ડ વધુ પ્રતિબંધિત છે, અને તમે ઓછા સંબંધિત પોસ્ટ્સ એકંદર છે. મૂળભૂત મેચ થ્રેશોલ્ડ 5 છે. જો તમે યોગ્ય મેચ threshhold શોધવા માંગો છો, અમુક પોસ્ટ સંબંધિત પોસ્ટ્સ પ્રદર્શન પર એક નજર અને તેમના સ્કોર્સ લો. તમે શું સંબંધિત પોસ્ટ્સ પ્રકારના અપ કરવામાં આવી રહી લેવામાં આવે છે અને જુઓ કે મેચ સ્કોર્સ પ્રકારની શું કરી શકો છો, અને તમારી સાઇટ માટે યોગ્ય થ્રેશોલ્ડ નક્કી કરે છે."
393
 
394
  #@ yarpp
395
  #: yarpp_options.php:279
388
 
389
  #@ yarpp
390
  #: options-meta-boxes.php:124
391
+ msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
392
+ msgstr "ઊંચી મેચ થ્રેશોલ્ડ વધુ પ્રતિબંધિત છે, અને તમે ઓછા સંબંધિત પોસ્ટ્સ એકંદર છે. મૂળભૂત મેચ થ્રેશોલ્ડ 5 છે. જો તમે યોગ્ય મેચ thresholdશોધવા માંગો છો, અમુક પોસ્ટ સંબંધિત પોસ્ટ્સ પ્રદર્શન પર એક નજર અને તેમના સ્કોર્સ લો. તમે શું સંબંધિત પોસ્ટ્સ પ્રકારના અપ કરવામાં આવી રહી લેવામાં આવે છે અને જુઓ કે મેચ સ્કોર્સ પ્રકારની શું કરી શકો છો, અને તમારી સાઇટ માટે યોગ્ય થ્રેશોલ્ડ નક્કી કરે છે."
393
 
394
  #@ yarpp
395
  #: yarpp_options.php:279
lang/yarpp-he_IL.po CHANGED
@@ -338,7 +338,7 @@ msgstr ""
338
  msgid ""
339
  "The higher the match threshold, the more restrictive, and you get less "
340
  "related posts overall. The default match threshold is 5. If you want to find "
341
- "an appropriate match threshhold, take a look at some post's related posts "
342
  "display and their scores. You can see what kinds of related posts are being "
343
  "picked up and with what kind of match scores, and determine an appropriate "
344
  "threshold for your site."
338
  msgid ""
339
  "The higher the match threshold, the more restrictive, and you get less "
340
  "related posts overall. The default match threshold is 5. If you want to find "
341
+ "an appropriate match threshold, take a look at some post's related posts "
342
  "display and their scores. You can see what kinds of related posts are being "
343
  "picked up and with what kind of match scores, and determine an appropriate "
344
  "threshold for your site."
lang/yarpp-hi_IN.po CHANGED
@@ -389,7 +389,7 @@ msgstr "विकल्प बचा लिया!"
389
 
390
  #: options-meta-boxes.php:124
391
  #@ yarpp
392
- msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
393
  msgstr "मैच सीमा से अधिक, अधिक प्रतिबंधात्मक, और तुम कम संबंधित पदों पीओगे. डिफ़ॉल्ट मैच दहलीज 5 है. यदि आप एक उचित मैच दहलीज को ढूँढ़ना चाहते हूँ.किसी पद से संबंधित पदों प्रदर्शन और अपने स्कोर पर एक नज़र रखना चाहते हूँ. तुम संबंधित पदों का क्या प्रकार और मैच के स्कोर देख सकते हो और आपकी साइट के लिए एक उचित सीमा निर्धारित सकते हो. "
394
 
395
  #: yarpp_options.php:279
389
 
390
  #: options-meta-boxes.php:124
391
  #@ yarpp
392
+ msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
393
  msgstr "मैच सीमा से अधिक, अधिक प्रतिबंधात्मक, और तुम कम संबंधित पदों पीओगे. डिफ़ॉल्ट मैच दहलीज 5 है. यदि आप एक उचित मैच दहलीज को ढूँढ़ना चाहते हूँ.किसी पद से संबंधित पदों प्रदर्शन और अपने स्कोर पर एक नज़र रखना चाहते हूँ. तुम संबंधित पदों का क्या प्रकार और मैच के स्कोर देख सकते हो और आपकी साइट के लिए एक उचित सीमा निर्धारित सकते हो. "
394
 
395
  #: yarpp_options.php:279
lang/yarpp-hr.po CHANGED
@@ -264,7 +264,7 @@ msgstr ""
264
  msgid ""
265
  "The higher the match threshold, the more restrictive, and you get less "
266
  "related posts overall. The default match threshold is 5. If you want to find "
267
- "an appropriate match threshhold, take a look at some post's related posts "
268
  "display and their scores. You can see what kinds of related posts are being "
269
  "picked up and with what kind of match scores, and determine an appropriate "
270
  "threshold for your site."
264
  msgid ""
265
  "The higher the match threshold, the more restrictive, and you get less "
266
  "related posts overall. The default match threshold is 5. If you want to find "
267
+ "an appropriate match threshold, take a look at some post's related posts "
268
  "display and their scores. You can see what kinds of related posts are being "
269
  "picked up and with what kind of match scores, and determine an appropriate "
270
  "threshold for your site."
lang/yarpp-hu_HU.po CHANGED
@@ -389,7 +389,7 @@ msgstr "Beállítások elmentve!"
389
 
390
  #: options-meta-boxes.php:124
391
  #@ yarpp
392
- msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
393
  msgstr "Minél pontossabb a hasonlósági beállításod annál kevesebb hasonló bejegyzés jelenik meg. Az alap megjelentés 5. Ha több hasonló bejegyzést szeretnél megjeleníteni adj meg kevesebb szűrési opciót illetve ha kevesebb de pontosabb találatokat szeretnél, adj meg minden szűrési opciót."
394
 
395
  #: yarpp_options.php:279
389
 
390
  #: options-meta-boxes.php:124
391
  #@ yarpp
392
+ msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
393
  msgstr "Minél pontossabb a hasonlósági beállításod annál kevesebb hasonló bejegyzés jelenik meg. Az alap megjelentés 5. Ha több hasonló bejegyzést szeretnél megjeleníteni adj meg kevesebb szűrési opciót illetve ha kevesebb de pontosabb találatokat szeretnél, adj meg minden szűrési opciót."
394
 
395
  #: yarpp_options.php:279
lang/yarpp-id_ID.po CHANGED
@@ -399,7 +399,7 @@ msgstr "Perbarui Opsi"
399
 
400
  #: options-meta-boxes.php:124
401
  #@ yarpp
402
- msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
403
  msgstr "Semakin tinggi ambang kecocokan, semakin ketat, dan Anda mendapat tulisan terkait yang semakin sedikit secara keseluruhan. Ambang kecocokan bawaan adalah 5. Jika Anda ingin menemukan ambang kecocokan yang pas, lihat pada tampilan tulisan terkait untuk beberapa tulisan dan skornya. Anda dapat melihat jenis tulisan terkait yang terpilih dan dengan jenis kecocokan yang mana, dan menentukan ambang yang cocok untuk situs Anda."
404
 
405
  #: yarpp_options.php:280
399
 
400
  #: options-meta-boxes.php:124
401
  #@ yarpp
402
+ msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
403
  msgstr "Semakin tinggi ambang kecocokan, semakin ketat, dan Anda mendapat tulisan terkait yang semakin sedikit secara keseluruhan. Ambang kecocokan bawaan adalah 5. Jika Anda ingin menemukan ambang kecocokan yang pas, lihat pada tampilan tulisan terkait untuk beberapa tulisan dan skornya. Anda dapat melihat jenis tulisan terkait yang terpilih dan dengan jenis kecocokan yang mana, dan menentukan ambang yang cocok untuk situs Anda."
404
 
405
  #: yarpp_options.php:280
lang/yarpp-it_IT.po CHANGED
@@ -249,7 +249,7 @@ msgstr "YARPP limita la lista degli articoli correlati (1) per numero massimo e
249
 
250
  #: options-meta-boxes.php:153
251
  #@ yarpp
252
- msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
253
  msgstr "Quanto più alto sarà il valore di corrispondenza, maggiore sarà la restrizione: otterrai di fatto un minore numero di articoli correlati. Il valore predefinito é impostato a 5. Qualora desiderassi trovare un valore appropriato per determinare le affinità, verifica gli articoli correlati di alcuni post ed il punteggio a loro associato. Potrai quindi determinare quale sia il migliore valore di corrispondenza per il tuo sito."
254
 
255
  #: options-meta-boxes.php:159
249
 
250
  #: options-meta-boxes.php:153
251
  #@ yarpp
252
+ msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
253
  msgstr "Quanto più alto sarà il valore di corrispondenza, maggiore sarà la restrizione: otterrai di fatto un minore numero di articoli correlati. Il valore predefinito é impostato a 5. Qualora desiderassi trovare un valore appropriato per determinare le affinità, verifica gli articoli correlati di alcuni post ed il punteggio a loro associato. Potrai quindi determinare quale sia il migliore valore di corrispondenza per il tuo sito."
254
 
255
  #: options-meta-boxes.php:159
lang/yarpp-ja.po CHANGED
@@ -363,7 +363,7 @@ msgstr ""
363
  msgid ""
364
  "The higher the match threshold, the more restrictive, and you get less "
365
  "related posts overall. The default match threshold is 5. If you want to find "
366
- "an appropriate match threshhold, take a look at some post's related posts "
367
  "display and their scores. You can see what kinds of related posts are being "
368
  "picked up and with what kind of match scores, and determine an appropriate "
369
  "threshold for your site."
363
  msgid ""
364
  "The higher the match threshold, the more restrictive, and you get less "
365
  "related posts overall. The default match threshold is 5. If you want to find "
366
+ "an appropriate match threshold, take a look at some post's related posts "
367
  "display and their scores. You can see what kinds of related posts are being "
368
  "picked up and with what kind of match scores, and determine an appropriate "
369
  "threshold for your site."
lang/yarpp-kk_KZ.po CHANGED
@@ -381,7 +381,7 @@ msgstr "Күйге келтірулер сақтаған!"
381
 
382
  #: options-meta-boxes.php:124
383
  #@ yarpp
384
- msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
385
  msgstr "Не ұқсастықтар жоғары табалдырығы, сол қатал іріктеу, және сол жазуларды шығуда аз аласыз. Табалдырық бойынша-үндемеуге 5 тең. Егер қолайлы табалдырықты мәндер тапқысы келісе, поэкспериментируйте бірнешесі қатынастармен. Қандай қатынастар жоғары шығатынын сіз көре аласыз және оларда қандай сіздің сайтыңыз\" үшін қолайлы деңгей анықтауға болатын ұқсастықтар мәндері."
386
 
387
  #: yarpp_options.php:279
381
 
382
  #: options-meta-boxes.php:124
383
  #@ yarpp
384
+ msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
385
  msgstr "Не ұқсастықтар жоғары табалдырығы, сол қатал іріктеу, және сол жазуларды шығуда аз аласыз. Табалдырық бойынша-үндемеуге 5 тең. Егер қолайлы табалдырықты мәндер тапқысы келісе, поэкспериментируйте бірнешесі қатынастармен. Қандай қатынастар жоғары шығатынын сіз көре аласыз және оларда қандай сіздің сайтыңыз\" үшін қолайлы деңгей анықтауға болатын ұқсастықтар мәндері."
386
 
387
  #: yarpp_options.php:279
lang/yarpp-ko_KR.po CHANGED
@@ -335,7 +335,7 @@ msgstr "옵션이 저장되었습니다!"
335
 
336
  #: options-meta-boxes.php:153
337
  #@ yarpp
338
- msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
339
  msgstr "일치 임계값이 높을수록, 더 많은 제한을 할수록, 전체적으로 적은 관련 글들을 얻습니다. 기본적인 일치 임계값은 5입니다. 적절히 일치하는 임계값을 찾으려면, 일부 글의 관련 글 화면 및 점수를 보시기 바랍니다. 당신은 어떤 류의 관련된 글이 포착되고 있고 어떤 종류의 일치하는 점수인지를 확인할 수 있으며 당신의 사이트에 대한 적절한 임계값을 결정할 수 있습니다."
340
 
341
  #: class-core.php:71
335
 
336
  #: options-meta-boxes.php:153
337
  #@ yarpp
338
+ msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
339
  msgstr "일치 임계값이 높을수록, 더 많은 제한을 할수록, 전체적으로 적은 관련 글들을 얻습니다. 기본적인 일치 임계값은 5입니다. 적절히 일치하는 임계값을 찾으려면, 일부 글의 관련 글 화면 및 점수를 보시기 바랍니다. 당신은 어떤 류의 관련된 글이 포착되고 있고 어떤 종류의 일치하는 점수인지를 확인할 수 있으며 당신의 사이트에 대한 적절한 임계값을 결정할 수 있습니다."
340
 
341
  #: class-core.php:71
lang/yarpp-lt_LT.po CHANGED
@@ -218,8 +218,8 @@ msgstr "daugiau&gt;"
218
 
219
  #: options-meta-boxes.php:124
220
  #@ yarpp
221
- msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
222
- msgstr "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
223
 
224
  #: options-meta-boxes.php:130
225
  #@ yarpp
218
 
219
  #: options-meta-boxes.php:124
220
  #@ yarpp
221
+ msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
222
+ msgstr "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
223
 
224
  #: options-meta-boxes.php:130
225
  #@ yarpp
lang/yarpp-lv_LV.po CHANGED
@@ -389,7 +389,7 @@ msgstr "Nastroiki sohraneny!"
389
 
390
  #: options-meta-boxes.php:124
391
  #@ yarpp
392
- msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
393
  msgstr "Chem vyshe porog pohojesti, tem stroje vyborka, i tem men'she poluchite zapisei na vyhode. Po-umolchaniyu porog raven 5. Esli hotite naiti priemlimye porogovye znacheniya, poeksperimentiruite s neskol'kimi soobscheniyami. Vy smojete uvidet', kakie soobscheniya vyhodyat naverh i kakie u nih znacheniya shojesti, po kotorym mojno opredelit' priemlimyi uroven' dlya vashego saita."
394
 
395
  #: yarpp_options.php:279
389
 
390
  #: options-meta-boxes.php:124
391
  #@ yarpp
392
+ msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
393
  msgstr "Chem vyshe porog pohojesti, tem stroje vyborka, i tem men'she poluchite zapisei na vyhode. Po-umolchaniyu porog raven 5. Esli hotite naiti priemlimye porogovye znacheniya, poeksperimentiruite s neskol'kimi soobscheniyami. Vy smojete uvidet', kakie soobscheniya vyhodyat naverh i kakie u nih znacheniya shojesti, po kotorym mojno opredelit' priemlimyi uroven' dlya vashego saita."
394
 
395
  #: yarpp_options.php:279
lang/yarpp-mk-MK.po CHANGED
@@ -209,7 +209,7 @@ msgstr "poveke&gt;"
209
  msgid ""
210
  "The higher the match threshold, the more restrictive, and you get less "
211
  "related posts overall. The default match threshold is 5. If you want to find "
212
- "an appropriate match threshhold, take a look at some post's related posts "
213
  "display and their scores. You can see what kinds of related posts are being "
214
  "picked up and with what kind of match scores, and determine an appropriate "
215
  "threshold for your site."
209
  msgid ""
210
  "The higher the match threshold, the more restrictive, and you get less "
211
  "related posts overall. The default match threshold is 5. If you want to find "
212
+ "an appropriate match threshold, take a look at some post's related posts "
213
  "display and their scores. You can see what kinds of related posts are being "
214
  "picked up and with what kind of match scores, and determine an appropriate "
215
  "threshold for your site."
lang/yarpp-nb_NO.po CHANGED
@@ -251,7 +251,7 @@ msgstr "mer&gt;"
251
 
252
  #: options-meta-boxes.php:124
253
  #@ yarpp
254
- msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
255
  msgstr "Desto høyere resultat-terskel, desto strenger, og du vil få mindre relaterte poster generelt. Standard resultat-terskel er 5. Dersom du vil oppnå en hensiktsmessig resultat-terskel, ta en titt på noen relaterte poster og se på poengsummen. Du kan se hva slags relaterte poster som blir valgt ut og hva slags poengsum, og dermed finne en hensiktsmessig resultat-terskel for din side."
256
 
257
  #: options-meta-boxes.php:130
251
 
252
  #: options-meta-boxes.php:124
253
  #@ yarpp
254
+ msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
255
  msgstr "Desto høyere resultat-terskel, desto strenger, og du vil få mindre relaterte poster generelt. Standard resultat-terskel er 5. Dersom du vil oppnå en hensiktsmessig resultat-terskel, ta en titt på noen relaterte poster og se på poengsummen. Du kan se hva slags relaterte poster som blir valgt ut og hva slags poengsum, og dermed finne en hensiktsmessig resultat-terskel for din side."
256
 
257
  #: options-meta-boxes.php:130
lang/yarpp-nl_NL.po CHANGED
@@ -183,7 +183,7 @@ msgstr "meer&gt;"
183
 
184
  #: options-meta-boxes.php:153
185
  #@ yarpp
186
- msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
187
  msgstr "Hoe hoger de overeenkomstdrempel hoe meer restricties en hoe minder gerelateerde bijdragen. De standaard overeenkomstdrempel is 5. Als je zoekt naar een goede drempel bekijk dan enkele gerelateerde bijdragen van de bijdragen en de scores. Je kunt zien wat voor soort gerelateerde er zijn opgepikt, wat de soort overeenkomst is en zo een juiste drempel instellen voor je website."
188
 
189
  #: options-meta-boxes.php:159
183
 
184
  #: options-meta-boxes.php:153
185
  #@ yarpp
186
+ msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
187
  msgstr "Hoe hoger de overeenkomstdrempel hoe meer restricties en hoe minder gerelateerde bijdragen. De standaard overeenkomstdrempel is 5. Als je zoekt naar een goede drempel bekijk dan enkele gerelateerde bijdragen van de bijdragen en de scores. Je kunt zien wat voor soort gerelateerde er zijn opgepikt, wat de soort overeenkomst is en zo een juiste drempel instellen voor je website."
188
 
189
  #: options-meta-boxes.php:159
lang/yarpp-pl_PL.po CHANGED
@@ -352,7 +352,7 @@ msgstr ""
352
  msgid ""
353
  "The higher the match threshold, the more restrictive, and you get less "
354
  "related posts overall. The default match threshold is 5. If you want to find "
355
- "an appropriate match threshhold, take a look at some post's related posts "
356
  "display and their scores. You can see what kinds of related posts are being "
357
  "picked up and with what kind of match scores, and determine an appropriate "
358
  "threshold for your site."
352
  msgid ""
353
  "The higher the match threshold, the more restrictive, and you get less "
354
  "related posts overall. The default match threshold is 5. If you want to find "
355
+ "an appropriate match threshold, take a look at some post's related posts "
356
  "display and their scores. You can see what kinds of related posts are being "
357
  "picked up and with what kind of match scores, and determine an appropriate "
358
  "threshold for your site."
lang/yarpp-pt_BR.po CHANGED
@@ -191,7 +191,7 @@ msgstr "mais&gt;"
191
 
192
  #: options-meta-boxes.php:124
193
  #@ yarpp
194
- msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
195
  msgstr "Quanto maior o nível de precisão, mais restritivo, menos posts relacionados no geral. O nível padrão é 5. Se você quer achar uma configuração apropriada, observe alguns posts relacionados e suas pontuações. Você pode conferir que tipos de posts relacionados estão sendo selecionados com que tipos de pontuações, determinando assim um nível de precisão ideal para o seu site."
196
 
197
  #: options-meta-boxes.php:130
191
 
192
  #: options-meta-boxes.php:124
193
  #@ yarpp
194
+ msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
195
  msgstr "Quanto maior o nível de precisão, mais restritivo, menos posts relacionados no geral. O nível padrão é 5. Se você quer achar uma configuração apropriada, observe alguns posts relacionados e suas pontuações. Você pode conferir que tipos de posts relacionados estão sendo selecionados com que tipos de pontuações, determinando assim um nível de precisão ideal para o seu site."
196
 
197
  #: options-meta-boxes.php:130
lang/yarpp-pt_PT.po CHANGED
@@ -389,7 +389,7 @@ msgstr "Opções gravadas!"
389
 
390
  #: options-meta-boxes.php:124
391
  #@ yarpp
392
- msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
393
  msgstr ""
394
 
395
  #: yarpp_options.php:279
389
 
390
  #: options-meta-boxes.php:124
391
  #@ yarpp
392
+ msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshold take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
393
  msgstr ""
394
 
395
  #: yarpp_options.php:279
lang/yarpp-ro_RO.po CHANGED
@@ -388,7 +388,7 @@ msgstr "Opțiuni salvate!"
388
 
389
  #@ yarpp
390
  #: options-meta-boxes.php:124
391
- msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
392
  msgstr "Cu cât e mai mare pragul de similitudine, cu atât e mai strictă proba, și în final vor fi primite mai puține rezultate. Pragul defult este de5. Dacă doriţi să găsiţi praguri acceptabile, experimentați cu mai multe posturi. Astfel veți putea vedea ce tipuri de posturi aferente vin ți care sunt valorile similare, care pot determina un nivel acceptabil pentru site-ul dvs."
393
 
394
  #@ yarpp
388
 
389
  #@ yarpp
390
  #: options-meta-boxes.php:124
391
+ msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
392
  msgstr "Cu cât e mai mare pragul de similitudine, cu atât e mai strictă proba, și în final vor fi primite mai puține rezultate. Pragul defult este de5. Dacă doriţi să găsiţi praguri acceptabile, experimentați cu mai multe posturi. Astfel veți putea vedea ce tipuri de posturi aferente vin ți care sunt valorile similare, care pot determina un nivel acceptabil pentru site-ul dvs."
393
 
394
  #@ yarpp
lang/yarpp-ru_RU.po CHANGED
@@ -389,7 +389,7 @@ msgstr "Настройки сохранены!"
389
 
390
  #: options-meta-boxes.php:124
391
  #@ yarpp
392
- msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
393
  msgstr "Чем выше порог похожести, тем строже выборка, и тем меньше получите записей на выходе. По-умолчанию порог равен 5. Если хотите найти приемлимые пороговые значения, поэкспериментируйте с несколькими сообщениями. Вы сможете увидеть, какие сообщения выходят наверх и какие у них значения схожести, по которым можно определить приемлимый уровень для вашего сайта."
394
 
395
  #: yarpp_options.php:279
389
 
390
  #: options-meta-boxes.php:124
391
  #@ yarpp
392
+ msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
393
  msgstr "Чем выше порог похожести, тем строже выборка, и тем меньше получите записей на выходе. По-умолчанию порог равен 5. Если хотите найти приемлимые пороговые значения, поэкспериментируйте с несколькими сообщениями. Вы сможете увидеть, какие сообщения выходят наверх и какие у них значения схожести, по которым можно определить приемлимый уровень для вашего сайта."
394
 
395
  #: yarpp_options.php:279
lang/yarpp-sk_SK.po CHANGED
@@ -239,7 +239,7 @@ msgstr "viac&gt;"
239
 
240
  #: options-meta-boxes.php:132
241
  #@ yarpp
242
- msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
243
  msgstr "Čím vyššie je nastavená presnosť zhody, tým menej súvisiacich príspevkov dostanete. Štandardne je zhoda nastavená na číslo 5. Pri hľadaní toho správneho nastavenia zhody Vám odporúčame pozrieť aké čísla sa zobrazujú pri navrhnutých súvisiacich článkoch a vyladiť si nastavenie podľa seba."
244
 
245
  #: options-meta-boxes.php:138
239
 
240
  #: options-meta-boxes.php:132
241
  #@ yarpp
242
+ msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
243
  msgstr "Čím vyššie je nastavená presnosť zhody, tým menej súvisiacich príspevkov dostanete. Štandardne je zhoda nastavená na číslo 5. Pri hľadaní toho správneho nastavenia zhody Vám odporúčame pozrieť aké čísla sa zobrazujú pri navrhnutých súvisiacich článkoch a vyladiť si nastavenie podľa seba."
244
 
245
  #: options-meta-boxes.php:138
lang/yarpp-sl_SI.po CHANGED
@@ -345,7 +345,7 @@ msgstr "YARPP je omejil sorodne članke na (1) maksimalno število in (2) a <em>
345
 
346
  #: options-meta-boxes.php:210
347
  #@ yarpp
348
- msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
349
  msgstr "Višji kot je ujemalni prag, je hkrati tudi bolj omejevalni in dobite manj sorodnih člankov. Privzeti ujemalni prag je 5 člankov. Če želite poiskati svoj primeren ujemalni prag, preverite sorodne članke v vaših že objavljenih objavah in njihovih rezultatih. Tam lahko vidite kateri sorodni članki so bili izbrani, s katerimi ujemalnimi rezultati in lahko določite če je to ta ujemalni prag, ki ga želite za vaš blog."
350
 
351
  #: options-meta-boxes.php:213
345
 
346
  #: options-meta-boxes.php:210
347
  #@ yarpp
348
+ msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
349
  msgstr "Višji kot je ujemalni prag, je hkrati tudi bolj omejevalni in dobite manj sorodnih člankov. Privzeti ujemalni prag je 5 člankov. Če želite poiskati svoj primeren ujemalni prag, preverite sorodne članke v vaših že objavljenih objavah in njihovih rezultatih. Tam lahko vidite kateri sorodni članki so bili izbrani, s katerimi ujemalnimi rezultati in lahko določite če je to ta ujemalni prag, ki ga želite za vaš blog."
350
 
351
  #: options-meta-boxes.php:213
lang/yarpp-sr_RS.po CHANGED
@@ -249,7 +249,7 @@ msgstr "YARPP ograničava listu povezanih postova za (1) najveći broj i (2) <em
249
 
250
  #: options-meta-boxes.php:153
251
  #@ yarpp
252
- msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
253
  msgstr "Što veći prag poklapanja, to više zabrana, i samim tim dobijate manje povezanih postova ukupno. Po osnovi prag poklapanja je 5. Ako želite da nađete odgovarajući prag poklapanja, pogledajte neke postove i njihove ocene. Tako možete videti koja vrsta postova je pokupljena i sa kojim ocenama poklapanja, i time odredite odgovarajući prag poklapanja za vaš sajt."
254
 
255
  #: options-meta-boxes.php:159
249
 
250
  #: options-meta-boxes.php:153
251
  #@ yarpp
252
+ msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
253
  msgstr "Što veći prag poklapanja, to više zabrana, i samim tim dobijate manje povezanih postova ukupno. Po osnovi prag poklapanja je 5. Ako želite da nađete odgovarajući prag poklapanja, pogledajte neke postove i njihove ocene. Tako možete videti koja vrsta postova je pokupljena i sa kojim ocenama poklapanja, i time odredite odgovarajući prag poklapanja za vaš sajt."
254
 
255
  #: options-meta-boxes.php:159
lang/yarpp-sv_SE.po CHANGED
@@ -246,7 +246,7 @@ msgstr "YARPP begränsar listan med relaterade inlägg efter (1) ett maximalt an
246
 
247
  # @ yarpp
248
  #: options-meta-boxes.php:153
249
- msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
250
  msgstr "Ju högre tröskelvärde, desto mer restriktivt bliir filtret, och du får färre relaterade poster. Förvalt värde är 5. Om du vill hitta ett lagom värde, ta en titt på vilka värden som visas för några relaterade poster. Genom att titta på vilka värden du har för de relaterade poster som hittas kan du enklare se om du behöver sänka eller höja värdet. Sänk det om du får för få relaterade poster, och höj det om du får för många."
251
 
252
  # @ yarpp
246
 
247
  # @ yarpp
248
  #: options-meta-boxes.php:153
249
+ msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
250
  msgstr "Ju högre tröskelvärde, desto mer restriktivt bliir filtret, och du får färre relaterade poster. Förvalt värde är 5. Om du vill hitta ett lagom värde, ta en titt på vilka värden som visas för några relaterade poster. Genom att titta på vilka värden du har för de relaterade poster som hittas kan du enklare se om du behöver sänka eller höja värdet. Sänk det om du får för få relaterade poster, och höj det om du får för många."
251
 
252
  # @ yarpp
lang/yarpp-tr_TR.po CHANGED
@@ -224,7 +224,7 @@ msgstr "bilgi &gt;"
224
 
225
  #@ yarpp
226
  #: options-meta-boxes.php:124
227
- msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
228
  msgstr "Eşleşme eşiği yükseldikçe seçilecek olan benzer yazılar daha yüksek kriterlere göre değerlendirilir ve benzer yazı sayınız azalabilir. Varsayılan eşleşme eşiği 5'tir. Uygun bir eşleşme eşiği sayısı bulmak için, yazılarınızın bazılarına bakın ve benzer yazılarının eşleşme eşik değerlerini inceleyin. Gördüğünüz sayılara göre ortalama bir değer bulabilirsiniz."
229
 
230
  #@ yarpp
224
 
225
  #@ yarpp
226
  #: options-meta-boxes.php:124
227
+ msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
228
  msgstr "Eşleşme eşiği yükseldikçe seçilecek olan benzer yazılar daha yüksek kriterlere göre değerlendirilir ve benzer yazı sayınız azalabilir. Varsayılan eşleşme eşiği 5'tir. Uygun bir eşleşme eşiği sayısı bulmak için, yazılarınızın bazılarına bakın ve benzer yazılarının eşleşme eşik değerlerini inceleyin. Gördüğünüz sayılara göre ortalama bir değer bulabilirsiniz."
229
 
230
  #@ yarpp
lang/yarpp-uk_UA.po CHANGED
@@ -389,7 +389,7 @@ msgstr "Настройки збережені!"
389
 
390
  #: options-meta-boxes.php:124
391
  #@ yarpp
392
- msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
393
  msgstr "Чим вище поріг схожості, тим суворіше вибірка, і тим менше отримаєте записів на виході. За замовчуванням поріг дорівнює 5. Якщо хочете знайти прийнятні порогові значення, поекспериментуйте з кількома повідомлення. Ви зможете побачити, які повідомлення виходять наверх і які у них значення подібності, за якими можна визначити прийнятний рівень для вашого сайту."
394
 
395
  #: yarpp_options.php:279
389
 
390
  #: options-meta-boxes.php:124
391
  #@ yarpp
392
+ msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
393
  msgstr "Чим вище поріг схожості, тим суворіше вибірка, і тим менше отримаєте записів на виході. За замовчуванням поріг дорівнює 5. Якщо хочете знайти прийнятні порогові значення, поекспериментуйте з кількома повідомлення. Ви зможете побачити, які повідомлення виходять наверх і які у них значення подібності, за якими можна визначити прийнятний рівень для вашого сайту."
394
 
395
  #: yarpp_options.php:279
lang/yarpp-uz_UZ.po CHANGED
@@ -389,7 +389,7 @@ msgstr "Opsiyalar saqlab qolindi!"
389
 
390
  #: options-meta-boxes.php:124
391
  #@ yarpp
392
- msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
393
  msgstr "O'xshashlik chegarasi qanchalik yuqori bo'lsa natija shunchalik chegaralangan, yani natijada shunchalik kam aloqador xabarlarga ega bo'lasiz. Asl holida o'xshashlik chegarasi 5ga teng. Agar mos keladigan chegara ko'rsatkichini topishni hohlasangiz, turli xabarlarni o'rganib chiqing. Siz qanday aloqador xabarlar yuqoriga ko'tarilayotganini va ularning o'xshashlik ko'rsatkichlarini ko'rishingiz mumkin. Natijada o'z saytingizga mos chegara ko'rsatkichni aniqlay olasiz."
394
 
395
  #: yarpp_options.php:279
389
 
390
  #: options-meta-boxes.php:124
391
  #@ yarpp
392
+ msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
393
  msgstr "O'xshashlik chegarasi qanchalik yuqori bo'lsa natija shunchalik chegaralangan, yani natijada shunchalik kam aloqador xabarlarga ega bo'lasiz. Asl holida o'xshashlik chegarasi 5ga teng. Agar mos keladigan chegara ko'rsatkichini topishni hohlasangiz, turli xabarlarni o'rganib chiqing. Siz qanday aloqador xabarlar yuqoriga ko'tarilayotganini va ularning o'xshashlik ko'rsatkichlarini ko'rishingiz mumkin. Natijada o'z saytingizga mos chegara ko'rsatkichni aniqlay olasiz."
394
 
395
  #: yarpp_options.php:279
lang/yarpp-vi_VN.po CHANGED
@@ -220,7 +220,7 @@ msgstr "thêm&gt;"
220
 
221
  #: options-meta-boxes.php:124
222
  #@ yarpp
223
- msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
224
  msgstr "Mức độ liên quan càng cao thì càng có ít bài viết liên quan. Mức độ mặc định là 5. Nếu bạn muốn xác định một mức độ phù hợp với trang của mình bạn có thể kiểm tra một số bài viết liên quan đang được hiển thị và dựa trên đó để xác định một mức độ hợp lý."
225
 
226
  #: options-meta-boxes.php:130
220
 
221
  #: options-meta-boxes.php:124
222
  #@ yarpp
223
+ msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
224
  msgstr "Mức độ liên quan càng cao thì càng có ít bài viết liên quan. Mức độ mặc định là 5. Nếu bạn muốn xác định một mức độ phù hợp với trang của mình bạn có thể kiểm tra một số bài viết liên quan đang được hiển thị và dựa trên đó để xác định một mức độ hợp lý."
225
 
226
  #: options-meta-boxes.php:130
lang/yarpp-zh_CN.po CHANGED
@@ -389,7 +389,7 @@ msgstr "保存成功!"
389
 
390
  #: options-meta-boxes.php:124
391
  #@ yarpp
392
- msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
393
  msgstr ""
394
 
395
  #: yarpp_options.php:279
389
 
390
  #: options-meta-boxes.php:124
391
  #@ yarpp
392
+ msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
393
  msgstr ""
394
 
395
  #: yarpp_options.php:279
lang/yarpp-zh_TW.po CHANGED
@@ -265,7 +265,7 @@ msgstr "YARPP 相關文章列表受兩項因素限制:(1) 最大值和 (2) <em
265
 
266
  #: options-meta-boxes.php:153
267
  #@ yarpp
268
- msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshhold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
269
  msgstr "相關值越高,篩選上也會更加嚴格,對整體來說顯示的相關文章會越少。在預設情況下,相關值是 5 分。如果你想找出一個理想的相關值,可以看看目前站內相關文章的顯示情形,試著找出一個最合適的相關值設定。"
270
 
271
  #: options-meta-boxes.php:159
265
 
266
  #: options-meta-boxes.php:153
267
  #@ yarpp
268
+ msgid "The higher the match threshold, the more restrictive, and you get less related posts overall. The default match threshold is 5. If you want to find an appropriate match threshold, take a look at some post's related posts display and their scores. You can see what kinds of related posts are being picked up and with what kind of match scores, and determine an appropriate threshold for your site."
269
  msgstr "相關值越高,篩選上也會更加嚴格,對整體來說顯示的相關文章會越少。在預設情況下,相關值是 5 分。如果你想找出一個理想的相關值,可以看看目前站內相關文章的顯示情形,試著找出一個最合適的相關值設定。"
270
 
271
  #: options-meta-boxes.php:159
readme.txt CHANGED
@@ -4,8 +4,8 @@ Tags: related, related posts, similar posts, posts, pages, thumbnails, feeds, mu
4
  Requires at least: 3.7
5
  Requires PHP: 5.3
6
  License: GPLv2 or later
7
- Tested up to: 5.4
8
- Stable tag: 5.3.0
9
 
10
  Display a list of related posts on your site based on a powerful unique algorithm. Optionally, earn money by including sponsored content.
11
 
@@ -21,7 +21,8 @@ Yet Another Related Posts Plugin (YARPP) displays pages, posts, and custom post
21
  * **An advanced and versatile algorithm**: Using a customizable algorithm considering post titles, content, tags, categories, and custom taxonomies, YARPP finds related content from across your site.
22
  * **Related posts in feeds**: Display related posts in RSS feeds with custom display options.
23
  * **HTTPS support**
24
- * **REST API** support
 
25
  * **Professionally maintained** and supported with regular updates
26
 
27
  **YARPP Algorithm Explained**
@@ -31,7 +32,7 @@ https://videopress.com/v/0n2TSzkb
31
 
32
  **Trusted since 2008**
33
  -------------------------------------------
34
- The **Yet Another Related Posts Plugin** (YARPP) is the **most popular and widely used** [Related Posts plugin for WordPress](https://wordpress.org/plugins/yet-another-related-posts-plugin/), encouraging Discovery and Engagement since 2008!
35
 
36
  YARPP works best with PHP 5.3 or greater, MySQL 5.6 or greater OR MariaDB 10.1 or greater, and WordPress 3.7 or greater. See [the FAQ](https://wordpress.org/plugins/yet-another-related-posts-plugin/faq/) for answers to common questions.
37
 
@@ -41,7 +42,7 @@ YARPP works best with PHP 5.3 or greater, MySQL 5.6 or greater OR MariaDB 10.1 o
41
 
42
  1. Copy the folder `yet-another-related-posts-plugin` into the directory `wp-content/plugins/` and activate the plugin.
43
  2. (optionally) copy the sample template files inside the `yarpp-templates` folder into your active theme.
44
- 3. Go to the "Related Posts (YARPP)" settings page to customize YARPP.
45
 
46
  = Auto display in your feeds =
47
 
@@ -55,7 +56,19 @@ The YARPP Basic widget can be used even if the "auto display" option is turned o
55
 
56
  = Custom display through templates =
57
 
58
- YARPP allows the advanced user with knowledge of PHP to customize the display of related posts using a templating mechanism.
 
 
 
 
 
 
 
 
 
 
 
 
59
 
60
  == Frequently Asked Questions ==
61
 
@@ -73,7 +86,7 @@ Most likely you have "no related posts" right now because the default "match thr
73
 
74
  If you do not want to show the Related Posts display in its default position (right below the post content), first go to YARPP options and turn off the "automatically display" options in the "website" section. If you would like to instead display it in your sidebar and you have a widget-aware theme, YARPP provides a Related Posts widget which you can add under "Appearance" > "Widgets."
75
 
76
- If you would like to add the Related Posts display elsewhere, edit your relevant theme file (most likely something like `single.php`) and add the PHP code `related_posts();` within [The Loop](http://codex.wordpress.org/The_Loop) where you want to display the related posts. (Make sure you don't add `echo related_posts();` or you may end up with duplicates in your related posts section.)
77
 
78
  = How can I limit related posts to a certain time frame? For instance, I don't want to show posts from two years ago. =
79
 
@@ -95,7 +108,7 @@ Some WordPress themes treat the home page as an archive or a "page." Go to "Sett
95
 
96
  If you have several posts where you don't want to display related posts and they all share a similar category or tag, you could use "Disallow by Category" or "Disallow by Tag" in "The Pool" section. (Go to "Settings" and "Related Posts (YARPP)" and make sure "The Pool" is checked in the "Screen Options" section at the top of the page.)
97
 
98
- You could also add `<!--noyarpp-->` to the HTML code of any post to prevent related posts from displaying. This solution will only work if you are using "Automatic Display" in the "Display Options" section. If you are programatically calling `related_posts()` from PHP code, you'll have to do your own checking to see if related posts are appropriate to display or not.
99
 
100
  = I'm using the Thumbnails display in YARPP 4. How do I override the style of the text that displays? The title only shows two lines, the font is larger than I'd like, I'd like to center the thumbnails, etc. =
101
 
@@ -156,7 +169,7 @@ However, YARPP does have difficulty with languages that don't place spaces betwe
156
 
157
  The YARPP calculation of related content does make a little impact, yes. However, YARPP caches all of its results, so any post's results need only be calculated once. YARPP's queries have been significantly optimized since version 3.5.
158
 
159
- If you are running a large site and need to throttle YARPP's computation, try the official [YARPP Experiments](https://wordpress.org/extend/plugins/yarpp-experiments/) plugin which adds this throttling functionality. If you are looking for a hosting provider whose databases will not balk under YARPP, I personally have had great success with [MediaTemple](http://www.mediatemple.net/#a_aid=4ed59d7ac5dae).
160
 
161
  = Are there any plugins that are incompatible with YARPP? =
162
 
@@ -173,7 +186,7 @@ Please submit similar bugs by starting a new thread on [the WordPress.org forums
173
 
174
  Before upgrading to a new WordPress version, you should first deactivate all plugins, then upgrade your WordPress, and then reactivate your plugins. Even then, you may still find that something went wrong with your YARPP functionality. If so, try these steps:
175
 
176
- 1. Visit the "Related Posts (YARPP)" settings page to verify your settings.
177
  2. Deactivate YARPP, replace the YARPP files on the server with a fresh copy of the new version, and then reactivate it.
178
  3. Install the official [YARPP Experiments](https://wordpress.org/extend/plugins/yarpp-experiments/) plugin to flush the cache.
179
 
@@ -272,55 +285,62 @@ add_action(
272
  `
273
 
274
  == Changelog ==
275
- = 5.3.0 (2020-07-29) =
276
- * New: REST API support ([documentation](https://support.shareaholic.com/hc/en-us/articles/360046456752))
 
 
 
 
 
 
 
277
  * Enhancement: [WP Rest Cache Plugin](https://wordpress.org/plugins/wp-rest-cache/) support
278
  * Enhancement: Filters to change the priority for YARPP's filters on `the_content`, `the_content_feed` and `the_excerpt_rss`, example: `add_filter('yarpp_content_priority', 1);`
279
  * Bugfix: Fixes deactivation survey when Google Translate in Chrome auto translates the admin page
280
 
281
- = 5.2.2 (2020-07-21) =
282
  * [Critical Bugfix](https://wordpress.org/support/topic/slow-website-after-update-to-5-2-1/): Fixes plugin upgrade process. This in turn fixes a page slow down issue introduced for some sites with v5.2.0.
283
 
284
- = 5.2.1 (2020-07-20) =
285
  * Enhancement: Don't recommend switching database engine unless necessary for fulltext indexes.
286
 
287
- = 5.2.0 (2020-07-20) =
288
  * Enhancement: Adds support for InnoDb fulltext search! One of our most requested features. Fulltext indexing is supported in MyISAM or InnoDB with MySQL 5.6.4 and higher.
289
  * Enhancement: Optimized database queries, resulting in ~2x speed improvement in some queries.
290
 
291
- = 5.1.9 (2020-06-25) =
292
  * [Bugfix](https://wordpress.org/support/topic/wont-let-me-deactivate-or-delete-plugin/) Fixes deactivation survey plugin conflict
293
 
294
- = 5.1.8 (2020-06-17) =
295
  * [Bugfix](https://wordpress.org/support/topic/upgrade-issue-29/) Add missing file to previous release!
296
 
297
- = 5.1.7 (2020-06-17) =
298
  * [Bugfix](https://wordpress.org/support/topic/cant-use-indexing/) Double-check database indexes exist before creating them
299
  * Bugfix: Titles were only being considered if body text was also considered for the relatedness algorithm. This update fixes the logic to work where only titles are set to be considered.
300
  * [Bugfix](https://wordpress.org/support/topic/wont-let-me-deactivate-or-delete-plugin/): Do not dismiss deactivation modal when clicking outside it
301
 
302
- = 5.1.6 (2020-05-15) =
303
  * [Bugfix](https://wordpress.org/support/topic/403-when-saving-changes/): 403 error when saving changes resolved
304
  * Enhancement: Feedback form enhancements
305
 
306
- = 5.1.5 (2020-05-11) =
307
  * Bugfix: Use correct deactivation reason code
308
 
309
- = 5.1.4 (2020-05-11) =
310
  * Require PHP 5.3 as a bare minimum for compatibility features
311
  * New: Display optional feedback form on plugin deactivation
312
 
313
- = 5.1.3 (2020-04-07) =
314
  * Support for WordPress 5.4+
315
  * Enhancement: Switch over to secure (https) endpoints
316
 
317
- = 5.1.2 (2019-11-06) =
318
  * Support for WordPress 5.3+
319
 
320
- = 5.1.1 (2019-09-23) =
321
  * Enhancement: Review Notice updates + instructions on how to disable it programmatically
322
 
323
- = 5.1.0 (2019-07-10) =
324
  * [Bugfix](https://wordpress.org/support/topic/yarpp-broken-in-gutenberg-editor/): Related Posts metabox did not load within Gutenberg Editor
325
  * Bugfix: Fixed 'Deactivate YARPP Pro' button, including moving functionality to proper WP AJAX functions
326
  * Enhancement: Related Post thumbnails should not be 'pinnable' to Pinterest
@@ -328,17 +348,17 @@ add_action(
328
  * Enhancement: Modernized Editor Metabox design
329
  * Enhancement: Added 'Refresh' button to Editor Metabox
330
 
331
- = 5.0.1 (2019-07-08) =
332
  * [Bugfix](https://wordpress.org/support/topic/styles_thumbnails-css-php-invalid-value/): Fixed invalid CSS rule
333
  * Enhancement: Set Cache headers for CSS file
334
 
335
- = 5.0.0 (2019-07-01) =
336
  * [Bugfix](https://wordpress.org/support/topic/php-notice-get_currentuserinfo-is-deprecated-since-version-4-5-0/): Fixed warning from using get_currentuserinfo()
337
 
338
- = 4.6 (2019-07-01) =
339
  * [Bugfix](https://wordpress.org/support/topic/plugin-flagged-by-wordfence/): Removed links from Plugin Readme to resolve WordFence false positive.
340
 
341
- = 4.5 (2019-05-18) =
342
  After a bit of a hiatus, we're back! The plugin had been delisted due to a minor [email address issue](https://make.wordpress.org/plugins/2018/10/22/reminder-plugins-are-closed-if-emails-bounce/). This has been resolved with this release and the plugin has been reinstated. We consider this to be a big step, and yes, after a 6-month hiatus of not being in the plugin directory.🙂
343
 
344
  The plugin is also no longer maintained by Adknowledge. A group of us with **deep expertise in Content Recommendations** and **10+ years experience with maintaining very popular plugins** have very recently taken Yarpp over from Adknowlege. More on this will be shared very soon.
@@ -972,6 +992,6 @@ After a break of many years, the plugin is 100% supported now that the baton has
972
  * Initial upload
973
 
974
  == Upgrade Notice ==
975
- = 5.3.0 =
976
  We update this plugin regularly so we can make it better for you. Update to the latest version for all of the available features and improvements. Thank you for using YARPP!
977
 
4
  Requires at least: 3.7
5
  Requires PHP: 5.3
6
  License: GPLv2 or later
7
+ Tested up to: 5.5
8
+ Stable tag: 5.4.0
9
 
10
  Display a list of related posts on your site based on a powerful unique algorithm. Optionally, earn money by including sponsored content.
11
 
21
  * **An advanced and versatile algorithm**: Using a customizable algorithm considering post titles, content, tags, categories, and custom taxonomies, YARPP finds related content from across your site.
22
  * **Related posts in feeds**: Display related posts in RSS feeds with custom display options.
23
  * **HTTPS support**
24
+ * **Shortcode support** for placing related posts anywhere inside or outside the content ([documentation](https://wordpress.org/plugins/yet-another-related-posts-plugin/#%0Ahow%20can%20i%20move%20the%20related%20posts%20display%3F%0A))
25
+ * **REST API support** ([documentation](https://support.shareaholic.com/hc/en-us/articles/360046456752))
26
  * **Professionally maintained** and supported with regular updates
27
 
28
  **YARPP Algorithm Explained**
32
 
33
  **Trusted since 2008**
34
  -------------------------------------------
35
+ The **Yet Another Related Posts Plugin** (YARPP) is the **most popular and widely used** [Related Posts plugin for WordPress](https://yarpp.com/), encouraging Discovery and Engagement since 2008!
36
 
37
  YARPP works best with PHP 5.3 or greater, MySQL 5.6 or greater OR MariaDB 10.1 or greater, and WordPress 3.7 or greater. See [the FAQ](https://wordpress.org/plugins/yet-another-related-posts-plugin/faq/) for answers to common questions.
38
 
42
 
43
  1. Copy the folder `yet-another-related-posts-plugin` into the directory `wp-content/plugins/` and activate the plugin.
44
  2. (optionally) copy the sample template files inside the `yarpp-templates` folder into your active theme.
45
+ 3. Go to the "YARPP" settings page to customize YARPP.
46
 
47
  = Auto display in your feeds =
48
 
56
 
57
  = Custom display through templates =
58
 
59
+ YARPP allows the advanced user with knowledge of PHP to customize the display of related posts using a custom templating mechanism.
60
+
61
+ = REST API =
62
+
63
+ YARPP adds a REST API endpoint for fetching related posts. The JSON results from the REST API query are the same as you would see if you were visiting a post on your website (the same quantity and order). It is possible to override the quantity at the time of making the REST API request.
64
+
65
+ [[Documentation](https://support.shareaholic.com/hc/en-us/articles/360046456752)]
66
+
67
+ = Shortcode =
68
+
69
+ You can place YARPP manually wherever you’d like in your theme within [The Loop](http://codex.wordpress.org/The_Loop) where you want to display the related posts. Simply insert the following shortcode:
70
+
71
+ `[yarpp]`
72
 
73
  == Frequently Asked Questions ==
74
 
86
 
87
  If you do not want to show the Related Posts display in its default position (right below the post content), first go to YARPP options and turn off the "automatically display" options in the "website" section. If you would like to instead display it in your sidebar and you have a widget-aware theme, YARPP provides a Related Posts widget which you can add under "Appearance" > "Widgets."
88
 
89
+ If you would like to add the Related Posts display elsewhere, edit your relevant theme file (most likely something like `single.php`) and add the shortcode code `[yarpp]` (recommended) or PHP function `related_posts();` within [The Loop](http://codex.wordpress.org/The_Loop) where you want to display the related posts. Make sure you don't add `echo related_posts();` or you may end up with duplicates in your related posts section.
90
 
91
  = How can I limit related posts to a certain time frame? For instance, I don't want to show posts from two years ago. =
92
 
108
 
109
  If you have several posts where you don't want to display related posts and they all share a similar category or tag, you could use "Disallow by Category" or "Disallow by Tag" in "The Pool" section. (Go to "Settings" and "Related Posts (YARPP)" and make sure "The Pool" is checked in the "Screen Options" section at the top of the page.)
110
 
111
+ You could also add `<!--noyarpp-->` to the HTML code of any post to prevent related posts from displaying. This solution will only work if you are using "Automatic Display" in the "Display Options" section. If you are programatically calling `related_posts()` or the shortcode `[yarpp]` from PHP code, you'll have to do your own checking to see if related posts are appropriate to display or not.
112
 
113
  = I'm using the Thumbnails display in YARPP 4. How do I override the style of the text that displays? The title only shows two lines, the font is larger than I'd like, I'd like to center the thumbnails, etc. =
114
 
169
 
170
  The YARPP calculation of related content does make a little impact, yes. However, YARPP caches all of its results, so any post's results need only be calculated once. YARPP's queries have been significantly optimized since version 3.5.
171
 
172
+ If you are running a large site and need to throttle YARPP's computation, try the official [YARPP Experiments](https://wordpress.org/extend/plugins/yarpp-experiments/) plugin which adds this throttling functionality.
173
 
174
  = Are there any plugins that are incompatible with YARPP? =
175
 
186
 
187
  Before upgrading to a new WordPress version, you should first deactivate all plugins, then upgrade your WordPress, and then reactivate your plugins. Even then, you may still find that something went wrong with your YARPP functionality. If so, try these steps:
188
 
189
+ 1. Visit the "YARPP" settings page to verify your settings.
190
  2. Deactivate YARPP, replace the YARPP files on the server with a fresh copy of the new version, and then reactivate it.
191
  3. Install the official [YARPP Experiments](https://wordpress.org/extend/plugins/yarpp-experiments/) plugin to flush the cache.
192
 
285
  `
286
 
287
  == Changelog ==
288
+ = 5.4.0 (03-August-2020) =
289
+ * New: Shortcode support! `[yarpp]` ([documentation](https://wordpress.org/plugins/yet-another-related-posts-plugin/#%0Ahow%20can%20i%20move%20the%20related%20posts%20display%3F%0A))
290
+ * Enhancement: Adds YARPP score to REST API responses ([documentation](https://support.shareaholic.com/hc/en-us/articles/360046456752))
291
+ * Enhancement: Prepare for default jQuery version update in upcoming WordPress Core
292
+ * Bugfix: Fixed admin panel tooltips
293
+ * [Bugfix](https://wordpress.org/support/topic/copy-templates-does-nothing/): Fixed admin panel "copy template" button
294
+
295
+ = 5.3.0 (29-July-2020) =
296
+ * New: REST API support! ([documentation](https://support.shareaholic.com/hc/en-us/articles/360046456752))
297
  * Enhancement: [WP Rest Cache Plugin](https://wordpress.org/plugins/wp-rest-cache/) support
298
  * Enhancement: Filters to change the priority for YARPP's filters on `the_content`, `the_content_feed` and `the_excerpt_rss`, example: `add_filter('yarpp_content_priority', 1);`
299
  * Bugfix: Fixes deactivation survey when Google Translate in Chrome auto translates the admin page
300
 
301
+ = 5.2.2 (21-July-2020) =
302
  * [Critical Bugfix](https://wordpress.org/support/topic/slow-website-after-update-to-5-2-1/): Fixes plugin upgrade process. This in turn fixes a page slow down issue introduced for some sites with v5.2.0.
303
 
304
+ = 5.2.1 (20-July-2020) =
305
  * Enhancement: Don't recommend switching database engine unless necessary for fulltext indexes.
306
 
307
+ = 5.2.0 (20-July-2020) =
308
  * Enhancement: Adds support for InnoDb fulltext search! One of our most requested features. Fulltext indexing is supported in MyISAM or InnoDB with MySQL 5.6.4 and higher.
309
  * Enhancement: Optimized database queries, resulting in ~2x speed improvement in some queries.
310
 
311
+ = 5.1.9 (25-June-2020) =
312
  * [Bugfix](https://wordpress.org/support/topic/wont-let-me-deactivate-or-delete-plugin/) Fixes deactivation survey plugin conflict
313
 
314
+ = 5.1.8 (17-June-2020) =
315
  * [Bugfix](https://wordpress.org/support/topic/upgrade-issue-29/) Add missing file to previous release!
316
 
317
+ = 5.1.7 (17-June-2020) =
318
  * [Bugfix](https://wordpress.org/support/topic/cant-use-indexing/) Double-check database indexes exist before creating them
319
  * Bugfix: Titles were only being considered if body text was also considered for the relatedness algorithm. This update fixes the logic to work where only titles are set to be considered.
320
  * [Bugfix](https://wordpress.org/support/topic/wont-let-me-deactivate-or-delete-plugin/): Do not dismiss deactivation modal when clicking outside it
321
 
322
+ = 5.1.6 (15-May-2020) =
323
  * [Bugfix](https://wordpress.org/support/topic/403-when-saving-changes/): 403 error when saving changes resolved
324
  * Enhancement: Feedback form enhancements
325
 
326
+ = 5.1.5 (11-May-2020) =
327
  * Bugfix: Use correct deactivation reason code
328
 
329
+ = 5.1.4 (11-May-2020) =
330
  * Require PHP 5.3 as a bare minimum for compatibility features
331
  * New: Display optional feedback form on plugin deactivation
332
 
333
+ = 5.1.3 (07-April-2020) =
334
  * Support for WordPress 5.4+
335
  * Enhancement: Switch over to secure (https) endpoints
336
 
337
+ = 5.1.2 (06-November-2019) =
338
  * Support for WordPress 5.3+
339
 
340
+ = 5.1.1 (23-September-2019) =
341
  * Enhancement: Review Notice updates + instructions on how to disable it programmatically
342
 
343
+ = 5.1.0 (10-July-2019) =
344
  * [Bugfix](https://wordpress.org/support/topic/yarpp-broken-in-gutenberg-editor/): Related Posts metabox did not load within Gutenberg Editor
345
  * Bugfix: Fixed 'Deactivate YARPP Pro' button, including moving functionality to proper WP AJAX functions
346
  * Enhancement: Related Post thumbnails should not be 'pinnable' to Pinterest
348
  * Enhancement: Modernized Editor Metabox design
349
  * Enhancement: Added 'Refresh' button to Editor Metabox
350
 
351
+ = 5.0.1 (08-July-2019) =
352
  * [Bugfix](https://wordpress.org/support/topic/styles_thumbnails-css-php-invalid-value/): Fixed invalid CSS rule
353
  * Enhancement: Set Cache headers for CSS file
354
 
355
+ = 5.0.0 (01-July-2019) =
356
  * [Bugfix](https://wordpress.org/support/topic/php-notice-get_currentuserinfo-is-deprecated-since-version-4-5-0/): Fixed warning from using get_currentuserinfo()
357
 
358
+ = 4.6 (01-July-2019) =
359
  * [Bugfix](https://wordpress.org/support/topic/plugin-flagged-by-wordfence/): Removed links from Plugin Readme to resolve WordFence false positive.
360
 
361
+ = 4.5 (18-May-2019) =
362
  After a bit of a hiatus, we're back! The plugin had been delisted due to a minor [email address issue](https://make.wordpress.org/plugins/2018/10/22/reminder-plugins-are-closed-if-emails-bounce/). This has been resolved with this release and the plugin has been reinstated. We consider this to be a big step, and yes, after a 6-month hiatus of not being in the plugin directory.🙂
363
 
364
  The plugin is also no longer maintained by Adknowledge. A group of us with **deep expertise in Content Recommendations** and **10+ years experience with maintaining very popular plugins** have very recently taken Yarpp over from Adknowlege. More on this will be shared very soon.
992
  * Initial upload
993
 
994
  == Upgrade Notice ==
995
+ = 5.4.0 =
996
  We update this plugin regularly so we can make it better for you. Update to the latest version for all of the available features and improvements. Thank you for using YARPP!
997
 
style/options_basic.css CHANGED
@@ -244,14 +244,6 @@ body.rtl .yarpp_code_display {
244
  }
245
  }
246
 
247
- .yarpp_copy_templates_button {
248
- float: right;
249
- }
250
-
251
- body.rtl .yarpp_copy_templates_button {
252
- float: left;
253
- }
254
-
255
  #yarpp-optin-learnmore {
256
  float: right;
257
  }
244
  }
245
  }
246
 
 
 
 
 
 
 
 
 
247
  #yarpp-optin-learnmore {
248
  float: right;
249
  }
style/options_switch.css CHANGED
@@ -64,7 +64,7 @@ a{
64
  .yarpp_switch_content p,
65
  .yarpp_switch_content h1 {
66
  position: relative;
67
- margin: 15px 25% 15px 45px;
68
  }
69
 
70
  .yarpp_switch_content h1 {
64
  .yarpp_switch_content p,
65
  .yarpp_switch_content h1 {
66
  position: relative;
67
+ margin: 15px 25% 15px 15px;
68
  }
69
 
70
  .yarpp_switch_content h1 {
yarpp-templates/yarpp-template-example.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  YARPP Template: Simple
4
- Author: mitcho (Michael Yoshitaka Erlewine)
5
  Description: A simple example YARPP template.
6
  */
7
  ?><h3>Related Posts</h3>
1
  <?php
2
  /*
3
  YARPP Template: Simple
4
+ Author: YARPP Team
5
  Description: A simple example YARPP template.
6
  */
7
  ?><h3>Related Posts</h3>
yarpp-templates/yarpp-template-list.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  YARPP Template: List
4
  Description: This template returns the related posts as a comma-separated list.
5
- Author: mitcho (Michael Yoshitaka Erlewine)
6
  */
7
  ?><h3>Related Posts</h3>
8
 
2
  /*
3
  YARPP Template: List
4
  Description: This template returns the related posts as a comma-separated list.
5
+ Author: YARPP Team
6
  */
7
  ?><h3>Related Posts</h3>
8
 
yarpp-templates/yarpp-template-multilingual.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  YARPP Template: Multilingual
4
  Description: An example template for use with the WPML and Polylang plugins
5
- Author: mitcho (Michael Yoshitaka Erlewine)
6
  */
7
 
8
  if (function_exists("icl_register_string")) {
2
  /*
3
  YARPP Template: Multilingual
4
  Description: An example template for use with the WPML and Polylang plugins
5
+ Author: YARPP Team
6
  */
7
 
8
  if (function_exists("icl_register_string")) {
yarpp-templates/yarpp-template-photoblog.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  YARPP Template: Yet Another Photoblog
4
  Description: Requires the Yet Another Photoblog plugin
5
- Author: mitcho (Michael Yoshitaka Erlewine)
6
  */ ?>
7
  <h3>Related Photos</h3>
8
  <?php if (have_posts()):?>
2
  /*
3
  YARPP Template: Yet Another Photoblog
4
  Description: Requires the Yet Another Photoblog plugin
5
+ Author: YARPP Team
6
  */ ?>
7
  <h3>Related Photos</h3>
8
  <?php if (have_posts()):?>
yarpp-templates/yarpp-template-random.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  YARPP Template: Random
4
  Description: This template gives you a random other post in case there are no related posts
5
- Author: mitcho (Michael Yoshitaka Erlewine)
6
  */ ?>
7
  <h3>Related Posts</h3>
8
  <?php if (have_posts()):?>
2
  /*
3
  YARPP Template: Random
4
  Description: This template gives you a random other post in case there are no related posts
5
+ Author: YARPP Team
6
  */ ?>
7
  <h3>Related Posts</h3>
8
  <?php if (have_posts()):?>
yarpp-templates/yarpp-template-thumbnail.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  YARPP Template: Thumbnails
4
  Description: Requires a theme which supports post thumbnails
5
- Author: mitcho (Michael Yoshitaka Erlewine)
6
  */ ?>
7
  <h3>Related Photos</h3>
8
  <?php if (have_posts()):?>
2
  /*
3
  YARPP Template: Thumbnails
4
  Description: Requires a theme which supports post thumbnails
5
+ Author: YARPP Team
6
  */ ?>
7
  <h3>Related Photos</h3>
8
  <?php if (have_posts()):?>
yarpp.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: Yet Another Related Posts Plugin (YARPP)
4
  Description: Adds related posts to your site and in RSS feeds, based on a powerful, customizable algorithm.
5
- Version: 5.3.0
6
  Author: YARPP
7
  Author URI: https://yarpp.com/
8
  Plugin URI: https://yarpp.com/
@@ -23,7 +23,7 @@ if(!defined('WP_CONTENT_DIR')){
23
  define('WP_CONTENT_DIR', substr($tr,0,strrpos($tr,'/')));
24
  }
25
 
26
- define('YARPP_VERSION', '5.3.0');
27
 
28
  define('YARPP_DIR', dirname(__FILE__));
29
  define('YARPP_URL', plugins_url('',__FILE__));
@@ -72,6 +72,7 @@ include_once(YARPP_DIR.'/classes/YARPP_Cache_'.ucfirst(YARPP_CACHE_TYPE).'.php')
72
  include_once( YARPP_DIR . '/lib/plugin-deactivation-survey/deactivate-feedback-form.php' );
73
  include_once(YARPP_DIR.'/classes/YARPP_DB_Schema.php');
74
  include_once(YARPP_DIR.'/classes/YARPP_DB_Options.php');
 
75
 
76
  /* WP hooks ----------------------------------------------------------------------------------------------------------*/
77
  add_action('init', 'yarpp_init');
2
  /*
3
  Plugin Name: Yet Another Related Posts Plugin (YARPP)
4
  Description: Adds related posts to your site and in RSS feeds, based on a powerful, customizable algorithm.
5
+ Version: 5.4.0
6
  Author: YARPP
7
  Author URI: https://yarpp.com/
8
  Plugin URI: https://yarpp.com/
23
  define('WP_CONTENT_DIR', substr($tr,0,strrpos($tr,'/')));
24
  }
25
 
26
+ define('YARPP_VERSION', '5.4.0');
27
 
28
  define('YARPP_DIR', dirname(__FILE__));
29
  define('YARPP_URL', plugins_url('',__FILE__));
72
  include_once( YARPP_DIR . '/lib/plugin-deactivation-survey/deactivate-feedback-form.php' );
73
  include_once(YARPP_DIR.'/classes/YARPP_DB_Schema.php');
74
  include_once(YARPP_DIR.'/classes/YARPP_DB_Options.php');
75
+ include_once(YARPP_DIR.'/classes/YARPP_Shortcode.php');
76
 
77
  /* WP hooks ----------------------------------------------------------------------------------------------------------*/
78
  add_action('init', 'yarpp_init');