post-page

WP Plugin: Contextual Related Posts

136
responses
by
 
on
November 27th, 2005
in
General, WordPress Plugins
heading
heading
heading
136
Responses

 

Comments

  1. David W. Boles (5 comments.) says:

    Fantastic! Works great with WP 1.5.2 and K2 Beta One 96. You have given new life to old posts with a renewed relevance. Thanks!

  2. David W. Boles (5 comments.) says:

    Uh-Oh! This Plugin will find unpublished pending posts in your WRITE queue and display them. That’s not good. Uninstalled the Plugin.

  3. Mark (118 comments.) says:

    Good call David. Fixed in the download.

  4. David W. Boles (5 comments.) says:

    Woo-hoo! Fixed! All Fantoosticness has been restored. Thanks, Mark!

  5. Sky (5 comments.) says:

    Wow ! That’s a very good plugin Mark, thank you :)
    Just a quick question though : the comment LivePreview appears before the Related posts section. Is there a way to change that ?

    Thanks

  6. Jurgen (1 comments.) says:

    Thanks for a great plugin! Just one question: I’m using another plugin which auto-closes comments after x days. For all posts where the comments are closed, there are no contextual related posts listed. Is there a way around this?

  7. Mark (118 comments.) says:

    Not in this version of the plugin since it uses the comment code to start off the display. You can add the code to your template to get around the display problem.

  8. David W. Boles (5 comments.) says:

    Hey Mark?

    It looks like the first return of the five is always the title of the article you’re reading. Does that seem like a wasted return to you? Is it possible for your Plugin to ignore the title of the originating post so it is never returned in its own Context?

  9. Mark (118 comments.) says:

    Try it now. :)

  10. David W. Boles (5 comments.) says:

    Ooo! Perfecto! That’s good stuff, thanks Mark! Don’t you think these changes deserve a change in version number?

  11. Mark (118 comments.) says:

    Not really. These are point releases at most, not really deserving of major structural changes.

  12. Meredith (24 comments.) says:

    WordPress 2.0? Did I hear that right?

  13. George (6 comments.) says:

    Is there any difference between this and the WP Related Entries from w-a-s-a-b-i?

  14. sunburntkamel (3 comments.) says:

    excellent plugin, i’ve been wanting something like this.

    how do you change where the items display?

  15. Luc (3 comments.) says:

    Hello,

    Great plug in that gives a second life to forgotten posts.
    What would be great would be the ability to search posts with the same tags (UltimatTagWarrior tagging system)

    Luc

  16. George (6 comments.) says:

    How do I move the related entry to the top instead of below the coment form?

  17. Brad (1 comments.) says:

    I really wanted this plugin to work on my blog. However, after installing it, this is what I got:

    WordPress database error: [The used table type doesn’t support FULLTEXT indexes]
    SELECT ID,post_title,post_content,post_excerpt,post_date, MATCH(post_title,post_content) AGAINST (‘The Bush Iraq Strategy’) AS score FROM wp_posts WHERE MATCH (post_title,post_content) AGAINST (‘The Bush Iraq Strategy’) and post_status = ‘publish’ and id 162 LIMIT 0,5

    Am I dead in the water?

  18. miscblogger (1 comments.) says:

    hey thanks for making this plugin. i’ve been troubleshooting the one from w-a-s-a-b-i and when I installed this, it did exactly what i needed.

  19. Paul says:

    Ok what is the hint in moving the Related Posts above the comments.

  20. Pariah S. Burke (4 comments.) says:

    I’ll echo the last few commentors: This very page has the related posts above the comments, but the plug-in, with its ad_action hook, only appears below the comment form. How can the related posts display appear at the bottom of the post as you have it?

  21. Dayna says:

    Does this works in pages as well? :)

  22. Stoyan (1 comments.) says:

    Very good, thanks!

    I’ve tweked the queries to also add the `post_excerpt` field to the fulltext index and then to use to find similar matches.

  23. CG (1 comments.) says:

    Hi Stoyan, how did you tweak the queries to add post excerpt? If I have technorati tags, is there some way I could have the posts “related”?

    Thanks!

  24. Josh (1 comments.) says:

    A few of us want to move the posts above the comments, but no one has helped to answer how to do this. Any help would be great. Thanks.

  25. jer666 (1 comments.) says:

    hi, sorry for my english, i’m french and i don’t speak english :)

    I try to use your plugin on my website, with Fluid Solution skin.
    But that does not function. I install plugin, but it don’t copy script in my skin (single.php), it’s ok with default skin. can you try to help me please… ?

  26. Xavi Ivars (1 comments.) says:

    Will it work for WordPress 2.1?

  27. sammychen (2 comments.) says:

    to Pariah S. Burke AND Josh :
    i found a way to solve this problem,
    first:remove the code “add_action(‘comment_form’,’related’);” from
    related.php
    second:add “” above the comment form code in
    the single.php file(you can find this file from your current theme files)
    sorry for my poor english.

  28. sammychen (2 comments.) says:

    second:add "" above the comment form code in
    the single.php file(you can find this file from your current theme files)

  29. Neal (4 comments.) says:

    For those of you who still want to move the Related Posts section above the comments, first remove the

    add_action(’comment_form’,’related’);

    from the plugin code. Then add,

    to the single post code in your theme–wherever you want the Related Posts section to show up. Personally, I put mine right below the code for my adsense.

  30. Neal (4 comments.) says:

    Sorry you should add this,

    to the single post code

  31. Neal (4 comments.) says:
  32. Neal (4 comments.) says:

    Okay it won’t show up…but with the less than greater than brackets around it insert

    ?php related(5); ?

    into your code.

  33. Tom Johnson (1 comments.) says:

    I like the ease of the plugin, but the first related post duplicates the post it appears on. Is there a fix around this? This seems like a major bug. A post shouldn’t be related to itself. Help? I did a side-by-side comparison test on my blog of this contextual posts plugin with the wasabi plugin.

  34. Mark (386 comments.) says:

    Tom,
    No problem. Look for the following line:
    global $wpdb, $table_prefix, $max_related, $post, $RelatedText, $single;

    And add the following after it:
    global $wp_query;
    $temppostid = $wp_query->post->ID;

  35. Daniel (38 comments.) says:

    Hi, Mark,

    I’m really liking the plugin so far, but something I’d like to accomplish is to prevent static pages and tags from showing up in the list. Is there a way to eliminate these from the query that you could offer?

    Thank you for your time!

  36. Bob says:

    Daniel:
    Here’s how to prevent pages from appearing in the list, at least with WP 2.2. Add the following to the SQL query after post_status = ‘publish’ :
    and post_type = ‘post’

    And a correction to Neal’s comment about adding a call to related directly in a theme’s single.php file. The correct statement to add is:
    <?php if (function_exists(‘related’)) related($post->ID); ?>

  37. Daniel (38 comments.) says:

    Thank you for the heads-up, Bob. I’ll give the new query a go, and also check my template for the modified line you’re mentioning here as well.

    I really dig this plugin! Thanks Mark!

    I noticed you placed yours in the same location that I did after the post. I’m beginning to wonder if perhaps manual insertion should be stressed more with this plugin as opposed to the automatic insertion it currently has – after the Comments section. It seems to work out better manually.

  38. Daniel (38 comments.) says:

    Awesome. That totally did the trick! Thank you kindly, Bob.

  39. Bob (8 comments.) says:

    The problem with the automatic insertion is that it only works if the comment form is displayed. It’s possible to make it also work if comments are closed (which would require a change to my theme anyway), but I don’t think WP has any built-in hooks for the case where users have to login to make comments. Also, Neal’s error was passing the number of links to create, but the function really needs the post ID (so it doesn’t display a link to itself). And the call to function_exists allows you to deactivate the plugin without having to edit the theme again.

    I also noticed that the plugin creates bad HTML if there aren’t any related posts; an extra </ul> is created. But I don’t want anything to be displayed if there aren’t any related posts, so I rewrote that portion of the code. Here’s the revised function, with the revised SQL query I posted earlier; otherwise, all the changes I made are after the query:


    function related($temppostid='') {
    global $wpdb, $table_prefix, $max_related, $post, $RelatedText, $single;
    if ($single && $post->post_title != "") {
    $stuff = addslashes($post->post_title);
    $sql = "SELECT ID,post_title,post_content,post_excerpt,post_date, MATCH(post_title,post_content) AGAINST ('$stuff') AS score FROM ".$table_prefix."posts WHERE MATCH (post_title,post_content) AGAINST ('$stuff') and post_status = 'publish' and post_type = 'post' and id $temppostid LIMIT 0,$max_related";
    $searches = $wpdb->get_results($sql);
    if($searches){
    echo "$RelatedText\n";
    foreach($searches as $search){
    $title = trim(stripslashes($search->post_title));
    echo "ID) . "\" rel=\"bookmark\">$title\n";
    } //end of foreach loop
    echo "\n";
    }
    }
    }

  40. Bob says:

    Blah… Even though I posted with the <code> tag, the site messed-up the code. Give me a few minutes to change all the less than and greater than symbols and try again. It also got rid of the indenting, but I don’t think I can fix that.

  41. Bob (8 comments.) says:

    OK, let’s try posting the function again:
    function related($temppostid=”) {
    global $wpdb, $table_prefix, $max_related, $post, $RelatedText, $single;
    if ($single && $post->post_title != “”) {
    $stuff = addslashes($post->post_title);
    $sql = “SELECT ID,post_title,post_content,post_excerpt,post_date, MATCH(post_title,post_content) AGAINST (‘$stuff’) AS score FROM “.$table_prefix.”posts WHERE MATCH (post_title,post_content) AGAINST (‘$stuff’) and post_status = ‘publish’ and post_type = ‘post’ and id <> $temppostid LIMIT 0,$max_related”;
    $searches = $wpdb->get_results($sql);
    if($searches){
    echo “<div class=\”related_posts\”>$RelatedText<ul>\n”;
    foreach($searches as $search){
    $title = trim(stripslashes($search->post_title));
    echo “<li><a href=\”” . get_permalink($search->ID) . “\” rel=\”bookmark\”>$title</a></li>\n”;
    } //end of foreach loop
    echo “</ul></div>\n”;
    }
    }
    }

  42. Mark Ghosh (386 comments.) says:

    Bob,
    Thanks for your code. I have added that to the post to preserve formatting.

  43. Daniel (38 comments.) says:

    Bob,
    I tried the code you suggested above – and it takes care of the XHTML invalid formatting ‘problem’ with the added tag. The problem I have though, is that I lose the ‘No results found.’ display – which I would rather keep for layout consistancy.

    I’m assuming there should be a way to wrap both separately as functions – then running through the main loop to determine which one to echo out? I attempted where I thought an else statement could occur – but the attempts caused errors (been a while since I’ve had a PHP hat on).

  44. Bob (8 comments.) says:

    I prefer not to have the no results. But if you want it, you could keep the original code (with a minor bug that browsers would ignore), or you can try the following UNTESTED code. It’s the part after the SQL query is created:
    $searches = $wpdb->get_results($sql);
    echo “<div class=\”related_posts\”>$RelatedText”;
    if($searches){
    echo “<ul>\n”;
    foreach($searches as $search){
    $title = trim(stripslashes($search->post_title));
    echo “<li><a href=\”” . get_permalink($search->ID) . “\” rel=\”bookmark\”>$title</a></li>\n”;
    } //end of foreach loop
    echo “</ul>”;
    }
    else{
    echo “<br /> <br />No results\n”;
    }
    echo “</div>\n”;
    }
    }

  45. Daniel (38 comments.) says:

    I tried something similar to that, but I can see if there’s something different in your placement of the else statement and echoing the div tag, to see if that’s do-able. Otherwise, I’m thinking this would have to be wrapped in two functions.

  46. Daniel (38 comments.) says:

    Well, I think this is now officially a perfect plugin! Thanks to Bob for his help! I’ve included the code of my final – to re-include the ‘No Results.’ message if nothing is found.:

    function related($temppostid=”) {
    global $wpdb, $table_prefix, $max_related, $post, $RelatedText, $single;
    if ($single && $post->post_title != “”) {
    $stuff = addslashes($post->post_title);
    $sql = “SELECT ID,post_title,post_content,post_excerpt,post_date, MATCH(post_title,post_content) AGAINST (‘$stuff’) AS score FROM “.$table_prefix.”posts WHERE MATCH (post_title,post_content) AGAINST (‘$stuff’) and post_status = ‘publish’ and post_type = ‘post’ and id $temppostid LIMIT 0,$max_related”;
    $searches = $wpdb->get_results($sql);
    if($searches){
    echo “$RelatedText\n”;
    foreach($searches as $search){
    $title = trim(stripslashes($search->post_title));
    echo “ID) . “\” rel=\”bookmark\”>$title\n”;
    } //end of foreach loop
    echo “\n”;
    } else {
    if ($search_counter $RelatedText\nNo results.\n\n”;
    }
    }
    }
    }

  47. Daniel (38 comments.) says:

    Sorry, I had included a comment for the $search++; string, which I wanted to note also appears to work without that line. (Possibly delete the comment above to eliminate confusion.):

    function related($temppostid=”) {
    global $wpdb, $table_prefix, $max_related, $post, $RelatedText, $single;
    if ($single && $post->post_title != “”) {
    $stuff = addslashes($post->post_title);
    $sql = “SELECT ID,post_title,post_content,post_excerpt,post_date, MATCH(post_title,post_content) AGAINST (‘$stuff’) AS score FROM “.$table_prefix.”posts WHERE MATCH (post_title,post_content) AGAINST (‘$stuff’) and post_status = ‘publish’ and post_type = ‘post’ and id $temppostid LIMIT 0,$max_related”;
    $searches = $wpdb->get_results($sql);
    if($searches){
    echo “$RelatedText\n”;
    foreach($searches as $search){
    $title = trim(stripslashes($search->post_title));
    echo “ID) . “\” rel=\”bookmark\”>$title\n”;
    } //end of foreach loop
    echo “\n”;
    } else {
    if ($search_counter $RelatedText\nNo results.\n\n”;
    }
    }
    }
    }

  48. Daniel (38 comments.) says:

    Well, this site’s rules don’t appear to like the code. Message me through my site if you’re interested, I guess.

  49. Bob (8 comments.) says:

    You have to change all the < symbols to &lt; (don’t forget the “;”) and > to &gt; then post it.

  50. Daniel (38 comments.) says:

    function related($temppostid=”) {
    global $wpdb, $table_prefix, $max_related, $post, $RelatedText, $single;
    if ($single && $post->post_title != “”) {
    $stuff = addslashes($post->post_title);
    $sql = “SELECT ID,post_title,post_content,post_excerpt,post_date, MATCH(post_title,post_content) AGAINST (‘$stuff’) AS score FROM “.$table_prefix.”posts WHERE MATCH (post_title,post_content) AGAINST (‘$stuff’) and post_status = ‘publish’ and post_type = ‘post’ and id <> $temppostid LIMIT 0,$max_related”;
    $searches = $wpdb->get_results($sql);
    if($searches){
    echo “<div class=\”related_posts\”>$RelatedText<ul>\n”;
    foreach($searches as $search){
    $title = trim(stripslashes($search->post_title));
    echo “<li><a href=\”” . get_permalink($search->ID) . “\” rel=\”bookmark\”>$title</a></li>\n”;
    } //end of foreach loop
    echo “</ul></div>\n”;
    } else {
    if ($search_counter <= $max_related) {
    $search_counter++;
    echo “<div class=\”related_posts\”>$RelatedText\n<p>No results.</p>\n</div>\n”;
    }
    }
    }
    }

  51. Daniel (38 comments.) says:

    That worked. Sorry, Mark. I think I cluttered up this comment thread a little. (Might want to delete the non-relevent stuff.)

  52. Mark Ghosh (386 comments.) says:

    No problem Daniel. Thanks for the fix. I will leave the comments there for posterity.

  53. mike (2 comments.) says:

    I translated all the notes and text to spanish, how do I get it to you so you can offer a spanish verison? (contact my mail if you are interested)

  54. sean says:

    Hey Mark,
    mark I was going through this wordpress plugin looking for a way to move my related post above the comments. And saw in the threads that it was being address. I replaced some the code with commenter 62. Daniels suggested code then I went into the actual single page view to place the function:
    php if (function_exists(’related’)) related($post->ID);
    where I wanted to see my comment displayed and when I accessed a single post, but the area that needes to load “Related Post” loads nothing. Although everything else loads fine. any idea what that could be

  55. sean says:

    Here is the code for the plugin
    http://rafb.net/p/DPv5xC73.html

    Here is the code for the actual single.php page
    http://rafb.net/p/XOBxgf16.html

  56. Daniel (38 comments.) says:

    Sean,
    It’s difficult to tell what the problem is without a working example provided. The code appears fine, aside from the possibility that you may want to wrap the php line in a div with an id, and style accordingly.

  57. sean says:

    Daniel: I dont know what happened but I deactivated the plugin deleted the file. then I downloaded the file again and uploaded that to the server and added the ? if functions_exists() code again. and it works: But what I did notice was THE WAY THE CODE IS COPIED. the single and double quotes dont seem to copy over correctly. so if anyone else runs into this problem just go in and manually replace the single and double quotes again, that should do the trick.

  58. Robin (1 comments.) says:

    I’m getting some of the posts as double listed.

  59. Daniel (38 comments.) says:

    Sean,
    The problem was probably as you describe it – relating to the double-quotes. It’s a common issue when copying anything from a WordPress rendered page, and should always be double-checked prior to running code.

  60. Tom (2 comments.) says:

    I’ve installed the plugin, but the text is far too small and almost unnoticeable. Look at this post

    http://nflminute.com/2007/07/0.....odes-down/

    to see what I mean. Any suggestions?

  61. Mark Ghosh (386 comments.) says:

    You should be able to style the text from the plugin. If you have a style in mind, email me the code and your plugin and I will add it.

  62. Tom (2 comments.) says:

    Forgive my lack of knowledge. All I’d like to do is make the text bigger, similar in size to other text on the page. Is there a quick fix to do that?

  63. Rahul says:

    I tried to implement the code which Daniel provided ID); ?> to have the related posts above the comment form but nothing shows up. I’m using wordpress 2.2. Can someone tell me how can I have the related posts above the comment part?

  64. Lokesh (1 comments.) says:

    Mark i got the error as below

    WordPress database error: [The used table type doesn’t support FULLTEXT indexes]
    SELECT ID,post_title,post_content,post_excerpt,post_date, MATCH(post_title,post_content) AGAINST (‘Using permalinks option of wordpress in IIS (windows server)’) AS score FROM mainposts WHERE MATCH (post_title,post_content) AGAINST (‘Using permalinks option of wordpress in IIS (windows server)’) and post_status = ‘publish’ and id 6 LIMIT 0,5

    Related Posts from the Past:
    No results.

  65. Top Ten Wordpress Plugins of MT Herald | MT Herald Dot Com (1 comments.) says:

    […] Madhujit Ghosh’s Contextual Related Posts […]

  66. rexsky (1 comments.) says:

    HI.HOw can i chanage the contextual-related-posts space? for example:
    below the coment…..thank you

    http://www.china-club.net

  67. Ray Burton (1 comments.) says:

    Thank goodness! It works. I tried tons of differant ones but this one actually worked just ftp it up and activate. Displays great, looks great! Thankyou.

  68. Megos (3 comments.) says:

    Cool plugin! How replace “related-posts” below the “comments” ?
    I don`t have single.php in my theme.

  69. Daniel (38 comments.) says:

    Megos,
    The theme you’re using does not include the appropriate header comments in order to show-up in the Theme Editor. You might want to send a note to that theme author to request including the proper header comments. Otherwise, you’ll have to edit that file in your text editor, and then upload it to your site via FTP. (Save a back-up of your original!)

  70. Megos (3 comments.) says:

    I don`t now how contact with theme author. Can You say how can I edit relative.php for this? Or can You edit relative.php? Post Relative v2… :)

  71. Daniel (38 comments.) says:

    Megos,
    Your theme author is linked at the bottom of every page of your Web site, in the footer. The theme author’s Contact page is the following:
    http://www.designdisease.com/contact/

  72. Megos (3 comments.) says:

    It`s not for this site.

  73. Daniel (38 comments.) says:

    I’m not sure how to help you here then.

  74. Kim says:

    hiya there, i just wanted to ask if this plugin will still work for WP 2.3 ;)
    thx for you patience
    Kim ;)

  75. Daniel (38 comments.) says:

    No problems to report here, Kim. I upgraded to 2.3 a week ago, and since this morning, 2.3.1.

  76. GoingLikeSixty (1 comments.) says:

    This worked great first time! Thank you.
    I struggled with moving the related posts above the comments, but I’m a noob. Eventually figured it out.
    Good learning lesson for me.
    Thanks again for provide this easy plug-in.

  77. jblu (1 comments.) says:

    Thanks for the great plugin! I use it on all of my blogs.

  78. Calvin Michel Sidjaja (1 comments.) says:

    I’m glad you build such simple-to-use plugin. This is really what I’m looking for, I have tried similar plugins but unfortunately they have the user to enter mysql database which not everyone could handle.

    Thanks again!

  79. Mike says:

    Could somebody post the code for putting the “related posts” somewhere else? I tried the suggestions above, but they don’t work. The text “add_action…” just shows up. Thanks.

  80. Jonathan says:

    ANybody notice the google ad at the top of the page???

    “Rocket your traffic with text link ads $100 free text link ads”

  81. Dustin (1 comments.) says:

    This is probably a stupid question, but what do I do if the SQL Index Table Setup fails? It says to refer to a readme, but I don’t see one.

    Somebody help the techtard?

  82. Raman (1 comments.) says:

    Hey…I am getting this error – WordPress database error The used table type doesn’t support FULLTEXT indexes for query ALTER TABLE wp_posts ADD FULLTEXT(post_content,post_title) made by include.

    How to reslove it?

  83. HP says:

    So, this is a really, really stuupid question … how do i install it=?

  84. jackie (1 comments.) says:

    This is an Awesome plug in, installed it on my site with no problems



Trackbacks/Pingbacks

  1. WP Plugin: Contextual Related Posts

    Weblog Tools Collection
    Updated their plugin that shows related posts based on title.

  2. TEKNOIRE says:

    […] Contextual Related Posts : Liste des billets similaires au billet en cours […]

  3. […] Here’s the page for downloads and updated information on this WordPress plugin. Contextual related posts […]

  4. […] Plugins such as Similar Posts: WordPress Plugin, Semiologic’s Related Posts WordPress Plugin, WP Plugin: Contextual Related Posts, or the popular but no longer supported WASABI Related Posts Plugin, among other Related, Recent, […]

  5. […] Plugins such as Similar Posts: WordPress Plugin, Semiologic’s Related Posts WordPress Plugin, WP Plugin: Contextual Related Posts, or the popular but no longer supported WASABI Related Posts Plugin, among other Related, Recent, […]

  6. […] vieux articles! Tout le monde est heureux! Ah et si ça vous intéresse, le plug-in s’appelle Contextual Related Posts et on peut le télécharger ici. Pour la plateforme WordPress […]

  7. […] Contextual Related Posts : Liste des billets similaires au billet en cours […]

  8. […] WP Plugin: Contextual Related Posts – a related post plugin that doesnt need you to do anything to the db or add any php code […]

  9. […] Contextual Related Posts : Liste des billets similaires au billet en cours […]

  10. […] tries to create a similar group of links for your blog. If you have enough links in your theme (Contextual Related Posts plugin comes in handy) for readers to explore, then as and when readers click on links, this plugin checks […]

  11. […] tries to create a similar group of links for your blog. If you have enough links in your theme (Contextual Related Posts plugin comes in handy) for readers to explore, then as and when readers click on links, this plugin checks […]

  12. […] was last updated on June 6, 2007, when I added Contextual Related Posts. The site currently uses WordPress 2.1.2, and will be updated as soon as I am certain that it will […]

  13. […] a WordPress plugin called “Contextual Related Posts” that automatically displays 5 of your previous related posts below the comment box. […]

  14. […] trata de crear un grupo de enlaces similares en tu blog. Si tienes suficientes enlaces en tu tema (el plugin de Entradas contextuales relacionadas calza como anillo al dedo) para que los lectores exploren, entonces cuando y si los lectores clican […]

  15. […] tutto grazie ad un piccolo plugin, che si chiama contextual related posts; fa tutto lui, ed è compatibile com WP 2.0. E’ composto da un solo file, e basta copiarlo […]

  16. […] keer over Tags op ISPam.nl, zojuist kwam ik nog een andere plugin tegen die het mogelijk maakt om related posts te vinden op basis van database fulltext-search. Nu was ik dus al van plan om het matching principe van de Simple Taging plugin te verbeteren, […]

  17. […] a WordPress plugin called “Contextual Related Posts” that automatically displays 5 of your previous related posts below the comment box. It’s an […]

  18. […] Contextual Related Posts 1.1 I like this plugin because it does a pretty good job of listing other posts that could be associated with the topic or category of the current post. It provides inner linking to other posts on your blog and might entice a reader to go beyond the current post. I’ve noticed one thing that should be “fixed” with this plugin. If comments are closed on the post. Contextual Related Posts don’t appear at the bottom of the post. […]

  19. […] Add a “Related Posts” feature. Spencer recommends the Contextual Related Posts plugin for […]

  20. […] a “Related Posts” feature such as Contextual Related Posts plugin for […]

  21. […] Add a “Related Posts” feature. Spencer recommends the Contextual Related Posts plugin for […]

  22. […] com o post original.  Há varios plug-ins disponíveis para isto, entre os quais o Wasabi, Contextual Related Posts, e o Simple Tagging Plug-in.  Eu optei por este último pela simples razão que depois me vai […]

  23. […] just added a plugin to this blog.  It’s great for users and it’s great for SEO.  The  Contextual Related Posts Plugin adds to the bottom of this post a list of related posts based on the content of the post.  If you […]

  24. […] a “Related Posts” feature. Spencer recommends the Contextual Related Posts plugin for […]

  25. […] Agregar la funcionalidad de “Entradas relacionadas”. Spencer recomienda el plugin Contextual Related Posts para […]

  26. […] Add a “Related Posts” feature. Spencer recommends the Contextual Related Posts plugin for […]

  27. […] Add a “Related Posts” feature. Spencer recommends the Contextual Related Posts plugin for […]

  28. […] did they go from?Contextual Related Posts ? Random […]

  29. […] less successful plugin I’ve been using is Contextual Related Posts. You’ll notice in the single-post view, at the bottom of the page there is a section called […]

  30. […] posts at the end of every post. There are several different plug-ins available for this, Wasabi, Contextual Related Posts, and the Simple Tagging Plug-in. I opted for the last one since it has the “tag cloud” […]

  31. […] Add a “Related Posts” feature. Spencer recommends the Contextual Related Posts plugin for […]

  32. […] Related Posts […]

  33. […] to one his blogs by adding it.2. Add a “Related Posts” feature. Spencer recommends the Contextual Related Posts plugin for […]

  34. […] WP Plugin: Contextual Related Posts?????????????? […]

  35. […] blog. 10. WP-PostRatings – Adds an AJAX rating system for your WordPress blog’s post/page. 11. Contextual Related Posts – Show last 5 contextually related posts on single blog posts, increase […]

  36. […] tries to create a similar group of links for your blog. If you have enough links in your theme (Contextual Related Posts plugin comes in handy) for readers to explore, then as and when readers click on links, this plugin checks […]

  37. […] Contextual Related PostsDieses Plug-In beschränkt den Vergleich auf den Titel. Wie gut dies funktioniert, hängt stark davon ab, wie man seine Titel wählt. Insgesamt dürfte ein Plug-In wie Similiar Posts aber deutlich bessere Resultate ergeben.    […]

  38. […] sure that in your template, you have the related posts plugin ready. So that when these combination keyword searchers visit your blog, they find some relevant […]

  39. […] Show Related Posts: Use this simple to manage Relate Post plugin for WordPress. This shows 5 posts related to the one you just […]

  40. […] spécialisés pour WordPress : SEO Title Tag, Ultimate Tag Warrior, Add Meta Tags, Follow URL, Contextual Related Posts, Social […]

  41. […] plugin se télécharge sur le site de Weblogtoolscollection.com ou directement à cette adresse : http://weblogtoolscollection.c.....ted_01.zip Marqué […]

  42. […] nombreux plugins du type Contextual Related Posts ou encore : Related Posts (ce dernier permet d’ajouter les articles complémentaires dans le […]

  43. […] Mark Ghosh discussing his plugin on WebLog Tools Collection.  This plugin works on the basis of words in the post title; there may be others which read and […]

  44. […] a “Related Posts” feature such as Contextual Related Posts plugin for […]

  45. […] which include Wasabi’s Related Entries, Borys Musielak’s Get Related News, Madhujit Ghosh’s Contextual Related Posts, Semiologic’s Related Posts, RMarsh’s Similar Posts, Erwin Terong’s Related Posts […]

  46. […] 5.- Contextual Related Posts […]

  47. […] Deep linking doesn’t just involve getting links from other sites. You need to have deep internal linking too. Any good related posts plugin can make a big difference in your link building efforts. On more than a handful of situations, I’ve used “related posts” to jumpstart a stagnant blog revival. Without a related posts plugin, your average post is likely to have 2-3 internal links. With a related posts plugin, you can expect to see incremental growth in internal links to any given post. The more posts you have, the more internal links each post will have. There are many good related posts plugin. Another one is Contextually Related Posts. […]

  48. […] Having “related links” at the end of an article is a good way to create interlinking to older content. It’s SEO goodness, people. And, of course, there’s a plug-in out there. I found one that’s absolutely super-duper. It’s at Contextual Related Links link. […]

Obviously Powered by WordPress. © 2003-2013

page counter
css.php