February 2nd, 2010 |
Leon Chong |
Cloud computing. For some, the term is wildly nebulous. Not long ago, even Oracle’s Larry Ellison publicly asked what the heck people meant by “the cloud.”
By James A. Martin
Sun, January 31, 2010 — PC World — Cloud computing. For some, the term is wildly nebulous. Not [...]
December 14th, 2009 |
Leon Chong |
In this example i will show you how to fetch 10 RSS feed into your wordpress blog from other websites. It is very easy to add rss feed to your wordpress blog.
<h2><?php _e(’RSS Latest News Headlines’); ?></h2>
<?php
include_once(ABSPATH . WPINC . ‘/rss.php’);
$rss = fetch_rss(’http://blog.grand-alliance.com/feed/’);
$maxitems = 10;
$items = array_slice($rss->items, 0, $maxitems);
?>
<ul>
<?php if (empty($items)) echo ‘<li>No news</li>’;
else
foreach ( [...]
November 28th, 2009 |
Leon Chong |
Wordpress blogs have duplicate content issues, and one of them is allowing reading the same content on both the posts, index page, archives and categories pages. To avoid search engine penalty it is important to optimize your Wordpress using Wordpress excerpt so that duplication will be avoided.
Instead of duplicating the whole content, you may use [...]