/home/kkco/.trash/wordpress-23-related-posts-plugin/compatibility.php
<?php

/* ***************************** */
/* WP 3.3 compatibility */
/* ***************************** */

if (!function_exists('wp_is_mobile') && version_compare(get_bloginfo('version'), '3.4', '<')) {
	function wp_is_mobile() {
		static $is_mobile;

		if ( isset($is_mobile) )
			return $is_mobile;

		if ( empty($_SERVER['HTTP_USER_AGENT']) ) {
			$is_mobile = false;
		} elseif ( strpos($_SERVER['HTTP_USER_AGENT'], 'Mobile') !== false // many mobile devices (all iPhone, iPad, etc.)
			|| strpos($_SERVER['HTTP_USER_AGENT'], 'Android') !== false
			|| strpos($_SERVER['HTTP_USER_AGENT'], 'Silk/') !== false
			|| strpos($_SERVER['HTTP_USER_AGENT'], 'Kindle') !== false
			|| strpos($_SERVER['HTTP_USER_AGENT'], 'BlackBerry') !== false
			|| strpos($_SERVER['HTTP_USER_AGENT'], 'Opera Mini') !== false
			|| strpos($_SERVER['HTTP_USER_AGENT'], 'Opera Mobi') !== false ) {
				$is_mobile = true;
		} else {
			$is_mobile = false;
		}

		return $is_mobile;
	}
}

/* ***************************** */
/* WP RP backwards compatibility */
/* ***************************** */

function wp_random_posts ($number = 10){
	$random_posts = wp_get_random_posts ($number);

	foreach ($random_posts as $random_post ){
		$output .= '<li>';

		$output .=  '<a href="' . get_permalink($random_post->ID) . '" title="' . esc_attr(wptexturize($random_post->post_title)) . '">' . wptexturize($random_post->post_title) . '</a></li>';
	}

	$output = '<ul class="randome_post">' . $output . '</ul>';

	echo $output;
}

function wp23_related_posts() {
	wp_related_posts();
}

function wp_related_posts() {
	$output = wp_get_related_posts();
	echo $output;
}

function wp_get_random_posts ($limitclause = '') {
	$limit = filter_var($limitclause, FILTER_SANITIZE_NUMBER_INT);
	return wp_rp_fetch_random_posts($limit);
}

function wp_fetch_related_posts($limitclause = '') {
	$limit = filter_var($limitclause, FILTER_SANITIZE_NUMBER_INT);
	return wp_rp_fetch_related_posts($limit);
}

function wp_fetch_random_posts($limit = 10) {
	return wp_rp_fetch_random_posts($limit);
}

function wp_fetch_content() {
	return wp_rp_fetch_posts_and_title();
}

function wp_generate_related_posts_list_items($related_posts) {
	return wp_rp_generate_related_posts_list_items($related_posts);
}

function wp_should_exclude() {
	return wp_rp_should_exclude();
}

function wp_get_related_posts($before_title = '', $after_title = '') {
	return wp_rp_get_related_posts($before_title, $after_title);
}

?>