<?php
/*
Plugin Name: Related Posts Tauren (modified)
Plugin URI: http://www.w-a-s-a-b-i.com/archives/2006/02/02/wordpress-related-entries-20/ and http://peter.mapledesign.co.uk/weblog/archives/wordpress-related-posts-plugin
Description: Returns a list of the related entries based on active/passive keyword matches.
Version: 2.02
Author: Alexander Malov, Mike Lu & Peter Bowyer
*/
// Begin setup
global $ran_plugin;
if (! isset($ran_plugin)) {
$ran_plugin = true;
if (isset($_REQUEST['setup'])) // Setup is initiated using related-posts.php?setup
{
global $file_path, $user_level;
require_once(dirname(__FILE__).'/../../' .'wp-config.php');
get_currentuserinfo();
if ($user_level < 8)
die ("Sorry, you must be at least a level 8 user."); // Make sure that user has sufficient priveleges
// SQL query to setup the actual full-text index
require(dirname(__FILE__).'/../../' .'wp-config.php');
global $table_prefix;
$connexion = mysql_connect(DB_HOST,DB_USER,DB_PASSWORD) or die("Can't connect.<br />".mysql_error());
$dbconnexion = mysql_select_db(DB_NAME, $connexion);
if (!$dbconnexion)
{
echo mysql_error();
die();
}
$sql_run = 'ALTER TABLE `'.$table_prefix.'posts` ADD FULLTEXT `post_related` ( `post_name` ,'
. ' `post_content` )';
$sql_result = mysql_query($sql_run);
if ($sql_result)
echo ("Congratulations! Full text index was created successfully!");
else
echo (" Something went wrong. Please check the instructions on how to setup the full text index manually.");
}
}
// End setup
// Begin Related Posts Tauren
/**
* Builds a word frequency list from the Wordpress post, and returns a string
* to be used in matching against the MySQL full-text index.
*
* @param integer $num_to_ret The number of words to use when matching against
* the database.
* @return string The words
*/
function current_post_keywords_tauren($num_to_ret = 20)
{
global $post;
// An array of weightings, to make adjusting them easier.
$w = array(
'title' => 2,
'name' => 2,
'content' => 1,
'cat_name' => 3
);
/*
Thanks to http://www.eatdrinksleepmovabletype.com/tutorials/building_a_weighted_keyword_list/
for the basics for this code. It saved me much typing (or thinking) :)
*/
// This needs experimenting with. I've given post title and url a double
// weighting, changing this may give you better results
$string = str_repeat($post->post_title, $w['title'].' ').
str_repeat(str_replace('-', ' ', $post->post_name).' ', $w['name']).
str_repeat($post->post_content, $w['content'].' ');
// Cat names don't help with the current query: the category names of other
// posts aren't retrieved by the query to be matched against (and can't be
// indexed)
// But I've left this in just in case...
$post_categories = get_the_category();
foreach ($post_categories as $cat) {
$string .= str_repeat($cat->cat_name.' ', $w['cat_name']);
}
// Remove punctuation.
$wordlist = preg_split('/\s*[\s+\.|\?|,|(|)|\-+|\'|\"|=|;|×|\$|\/|:|{|}]\s*/i', $string);
// Build an array of the unique words and number of times they occur.
$a = array_count_values($wordlist);
//Remove words that don't matter--"stop words."
$overusedwords = array( '', 'a', 'an', 'the', 'and', 'of', 'i', 'to', 'is', 'in', 'with', 'for', 'as', 'that', 'on', 'at', 'this', 'my', 'was', 'our', 'it', 'you', 'we', '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', '10', 'about', 'after', 'all', 'almost', 'along', 'also', 'amp', 'another', 'any', 'are', 'area', 'around', 'available', 'back', 'be', 'because', 'been', 'being', 'best', 'better', 'big', 'bit', 'both', 'but', 'by', 'c', 'came', 'can', 'capable', 'control', 'could', 'course', 'd', 'dan', 'day', 'decided', 'did', 'didn', 'different', 'div', 'do', 'doesn', 'don', 'down', 'drive', 'e', 'each', 'easily', 'easy', 'edition', 'end', 'enough', 'even', 'every', 'example', 'few', 'find', 'first', 'found', 'from', 'get', 'go', 'going', 'good', 'got', 'gt', 'had', 'hard', 'has', 'have', 'he', 'her', 'here', 'how', 'if', 'into', 'isn', 'just', 'know', 'last', 'left', 'li', 'like', 'little', 'll', 'long', 'look', 'lot', 'lt', 'm', 'made', 'make', 'many', 'mb', 'me', 'menu', 'might', 'mm', 'more', 'most', 'much', 'name', 'nbsp', 'need', 'new', 'no', 'not', 'now', 'number', 'off', 'old', 'one', 'only', 'or', 'original', 'other', 'out', 'over', 'part', 'place', 'point', 'pretty', 'probably', 'problem', 'put', 'quite', 'quot', 'r', 're', 'really', 'results', 'right', 's', 'same', 'saw', 'see', 'set', 'several', 'she', 'sherree', 'should', 'since', 'size', 'small', 'so', 'some', 'something', 'special', 'still', 'stuff', 'such', 'sure', 'system', 't', 'take', 'than', 'their', 'them', 'then', 'there', 'these', 'they', 'thing', 'things', 'think', 'those', 'though', 'through', 'time', 'today', 'together', 'too', 'took', 'two', 'up', 'us', 'use', 'used', 'using', 've', 'very', 'want', 'way', 'well', 'went', 'were', 'what', 'when', 'where', 'which', 'while', 'white', 'who', 'will', 'would', 'your');
// Remove the stop words from the list.
foreach ($overusedwords as $word) {
unset($a[$word]);
}
arsort($a, SORT_NUMERIC);
$num_words = count($a);
$num_to_ret = $num_words > $num_to_ret ? $num_to_ret : $num_words;
$outwords = array_slice($a, 0, $num_to_ret);
return implode(' ', array_keys($outwords));
}
function related_posts_tauren($limit=5, $len=10, $before_title = '', $after_title = '', $before_post = '', $after_post = '', $show_pass_post = false, $show_excerpt = false) {
global $wpdb, $post;
// Get option values from the options page
$limit = get_option('limit');
$len = get_option('len');
$before_title = stripslashes(get_option('before_title'));
$after_title = stripslashes(get_option('after_title'));
$before_post = stripslashes(get_option('before_post'));
$after_post = stripslashes(get_option('after_post'));
$show_pass_post = get_option('show_pass_post');
$show_excerpt = get_option('show_excerpt');
// Fetch keywords
/*
$postcustom = get_post_custom_values('keyword');
if (!empty($postcustom)) {
$values = array_map('trim', $postcustom);
$terms = implode($values, ' ');
} else {
$terms = str_replace('-', ' ', $post->post_name);
} */
// My new keyword way
$terms = current_post_keywords_tauren();
// Make sure the post is not from the future
$time_difference = get_settings('gmt_offset');
$now = gmdate("Y-m-d H:i:s",(time()+($time_difference*3600)));
// Primary SQL query
$sql = "SELECT ID, post_title, post_content,"
. "MATCH (post_name, post_content) "
. "AGAINST ('$terms') AS score "
. "FROM $wpdb->posts WHERE "
. "MATCH (post_name, post_content) "
. "AGAINST ('$terms') "
. "AND post_date <= '$now' "
. "AND (post_status IN ( 'publish', 'static' ) && ID != '$post->ID') ";
if ($show_pass_post=='false') { $sql .= "AND post_password ='' "; }
$sql .= "ORDER BY score DESC LIMIT $limit";
$results = $wpdb->get_results($sql);
$output = '';
if ($results) {
foreach ($results as $result) {
$title = stripslashes(apply_filters('the_title', $result->post_title));
if (strlen($title) > 21) {
$title = substr( $title, 0, 33 ) . '...';
}
$permalink = get_permalink($result->ID);
$post_content = strip_tags($result->post_content);
$post_content = stripslashes($post_content);
$output .= $before_title .'<div style="float:left; margin-right:10px;" class="related-post-image"><a href="'. $permalink .'"><img style="padding:0px; margin:0px; border:0px;" width="35" height="35" style="padding:1px" src="'.get_post_meta($result->ID, "Thumbnail", true).'" /></a></div><div style="text-align:left;"><a href="'. $permalink .'">' . $title . '</a></div>';
#$output .= " (".number_format($result->score, 2).")";
$output .= $after_title;
if ($show_excerpt=='true') {
$words=split(" ",$post_content);
$post_strip = join(" ", array_slice($words,0,$len));
$output .= $before_post . $post_strip . $after_post;
}
}
echo $output;
} else {
echo $before_title.'No Related Posts'.$after_title;
}
}
// End Related Posts Tauren
// Begin Keywords
function find_keywords_tauren($id) {
global $wpdb;
$content = $wpdb->get_var("SELECT post_content FROM $wpdb->posts WHERE ID = '$id'");
if (preg_match_all('/<!--kw=([\s\S]*?)-->/i', $content, $matches, PREG_SET_ORDER)) {
$test = $wpdb->get_var("SELECT meta_value FROM $wpdb->postmeta WHERE post_id = '$id' AND meta_key = 'keyword'");
if (!empty($test)) {
$output = explode(' ', $test);
} else {
$output = array();
}
foreach($matches as $match) {
$output = array_merge($output, explode(' ', $match[1]));
}
$output = array_unique($output);
$keywords = implode(' ', $output);
if (!empty($test)) {
$results= $wpdb->query("UPDATE $wpdb->postmeta SET meta_value = '$keywords' WHERE post_id = '$id' AND meta_key = 'keyword'");
} else {
$results = $wpdb->query("INSERT INTO $wpdb->postmeta (post_id,meta_key,meta_value) VALUES ('$id', 'keyword', '$keywords')");
}
$content = format_to_post(balanceTags(preg_replace("/<!--kw=([\s\S]*?)-->/i", "<!--$1-->", $content)));
$results = $wpdb->query("UPDATE $wpdb->posts SET post_content = '$content' WHERE ID = '$id'");
}
return $id;
}
// End Keywords
// Begin Related Posts Tauren Options
function rp_subpanel_tauren() {
if (isset($_POST['update_rp'])) {
$option_limit = $_POST['limit'];
$option_len = $_POST['len'];
$option_before_title = $_POST['before_title'];
$option_after_title = $_POST['after_title'];
$option_before_post = $_POST['before_post'];
$option_after_post = $_POST['after_post'];
$option_show_pass_post = $_POST['show_pass_post'];
$option_show_excerpt = $_POST['show_excerpt'];
update_option('limit', $option_limit);
update_option('len', $option_len);
update_option('before_title', $option_before_title);
update_option('after_title', $option_after_title);
update_option('before_post', $option_before_post);
update_option('after_post', $option_after_post);
update_option('show_pass_post', $option_show_pass_post);
update_option('show_excerpt', $option_show_excerpt);
?> <div class="updated"><p>Options saved!</p></div> <?php
}
?>
<div class="wrap">
<h2>Related Posts Tauren Options</h2>
<form method="post">
<fieldset class="options">
<table>
<tr>
<td><label for="limit">How many Related Posts Tauren would you like to show?</label>:</td>
<td><input name="limit" type="text" id="limit" value="<?php echo get_option('limit'); ?>" size="2" /></td>
</tr>
<tr>
<td><label for="before_title">Before</label> / <label for="after_title">After (Post Title) </label>:</td>
<td><input name="before_title" type="text" id="before_title" value="<?php echo htmlspecialchars(stripslashes(get_option('before_title'))); ?>" size="10" /> / <input name="after_title" type="text" id="after_title" value="<?php echo htmlspecialchars(stripslashes(get_option('after_title'))); ?>" size="10" /><em><small> For example: <li></li> or <dl></dl></small></em>
</td>
</tr>
<tr>
<td>Show excerpt?</td>
<td>
<select name="show_excerpt" id="show_excerpt">
<option <?php if(get_option('show_excerpt') == 'false') { echo 'selected'; } ?> value="false">False</option>
<option <?php if(get_option('show_excerpt') == 'true') { echo 'selected'; } ?> value="true">True</option>
</select>
</td>
</tr>
<tr>
<td><label for="len">Excerpt length (No. of words):</label></td>
<td><input name="len" type="text" id="len" value="<?php echo get_option('len'); ?>" size="2" />
</tr>
<tr>
<td><label for="before_post">Before</label> / <label for="after_post">After</label> (Excerpt):</td>
<td><input name="before_post" type="text" id="before_post" value="<?php echo htmlspecialchars(stripslashes(get_option('before_post'))); ?>" size="10" /> / <input name="after_post" type="text" id="after_post" value="<?php echo htmlspecialchars(stripslashes(get_option('after_post'))); ?>" size="10" /><em><small> For example: <li></li> or <dl></dl></small></em>
</td>
</tr>
<tr>
<td><label for="show_pass_post">Show password protected posts?</label></td>
<td>
<select name="show_pass_post" id="show_pass_post">
<option <?php if(get_option('show_pass_post') == 'false') { echo 'selected'; } ?> value="false">False</option>
<option <?php if(get_option('show_pass_post') == 'true') { echo 'selected'; } ?> value="true">True</option>
</select>
</td>
</tr>
</table>
</fieldset>
<p><div class="submit"><input type="submit" name="update_rp" value="<?php _e('Save!', 'update_rp') ?>" style="font-weight:bold;" /></div></p>
</form>
</div>
<div class="wrap">
<h2>SQL Index Table Setup</h2>
<p>If this is your first time installing this plugin you will have to run <a href="../wp-content/plugins/related-posts.php?setup" onclick="window.open(this.href, 'popupwindow', 'width=400,height=150,scrollbars,resizable'); return false;">this script</a> (opens a new window) in order to create the index table required by the plugin. If this fails, please refer to the readme on how to create it manually.</p>
</div>
<?php }
// End Related Posts Tauren Options
function rp_admin_menu_tauren() {
if (function_exists('add_submenu_page')) {
add_submenu_page('plugins.php', __('Related Posts Tauren Options'), __('Related Posts Tauren Options'), 1, __FILE__, 'rp_subpanel_tauren');
}
}
add_action('edit_post', 'find_keywords_tauren', 1);
// add_action('publish_post', 'find_keywords_tauren', 1);
add_action('admin_menu', 'rp_admin_menu_tauren');
?>