
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>活着</title>
	<atom:link href="http://www.yetlive.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.yetlive.com</link>
	<description>Wordpress, Hosting and SEO Skills &#38; Reviews</description>
	<lastBuildDate>Mon, 28 May 2012 13:32:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How to disable wordpress plugin update notification</title>
		<link>http://www.yetlive.com/wordpress/1146.html</link>
		<comments>http://www.yetlive.com/wordpress/1146.html#comments</comments>
		<pubDate>Sat, 12 May 2012 14:25:12 +0000</pubDate>
		<dc:creator>认真生活</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Plugin]]></category>

		<guid isPermaLink="false">http://www.yetlive.com/?p=1146</guid>
		<description><![CDATA[Wordpress will send notifications if plugins or <a href="http://www.themesmatter.com" target="_blank">themes</a> have updates available. This is a good idea if we need to get the latest function. However, some times we don't want to update wordpress plugins for some reason. When we made customization to a plugin, the update function will be sucks.

You just need some simple code to disable wordpress plugin update notifications.

Just put the following code to your functions.php file.
<pre>&#60;?php 
remove_action( 'load-update-core.php', 'wp_update_plugins' ); 
add_filter( 'pre_site_transient_update_plugins', create_function( '$a', "return null;" ) ); 
?&#62;</pre>
Go to Dashboard.  Open Appearance, then Editor. Click the "Theme Functions" file. Then put this code to the beginning.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.yetlive.com/tags/wp" class="st_tag internal_tag" rel="tag" title="Posts tagged with wordpress">WordPress</a> will send notifications if plugins or <a href="http://www.themesmatter.com" target="_blank">themes</a> have updates available. This is a good idea if we need to get the latest function. However, some times we don&#8217;t want to update wordpress plugins for some reason. When we made customization to a <a href="http://www.yetlive.com/tags/plugin" class="st_tag internal_tag" rel="tag" title="Posts tagged with Plugin">plugin</a>, the update function will be sucks.</p>
<p>You just need some simple code to disable wordpress plugin update notifications.</p>
<p>Just put the following code to your functions.<a href="http://www.yetlive.com/tags/php" class="st_tag internal_tag" rel="tag" title="Posts tagged with php">php</a> file.</p>
<pre>&lt;?php
remove_action( 'load-update-core.php', 'wp_update_plugins' );
add_filter( 'pre_site_transient_update_plugins', create_function( '$a', "return null;" ) );
?&gt;</pre>
<p>Go to Dashboard.  Open Appearance, then Editor. Click the &#8220;Theme Functions&#8221; file. Then put this code to the beginning.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.yetlive.com/wordpress/1146.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress: How to get post view without plugin</title>
		<link>http://www.yetlive.com/wordpress/1140.html</link>
		<comments>http://www.yetlive.com/wordpress/1140.html#comments</comments>
		<pubDate>Tue, 01 May 2012 14:01:26 +0000</pubDate>
		<dc:creator>认真生活</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Skill]]></category>

		<guid isPermaLink="false">http://www.yetlive.com/?p=1140</guid>
		<description><![CDATA[Many of Wordpress users use <a href="http://wordpress.org/extend/plugins/wp-postviews/" target="_blank">WP-PostView+</a> plugin to help them get the post view statistic. But some people will get problem when using this plugin because of unknown reason.

One of my WP friend find the WP-PostViews will also show a "ZERO" for some post.

Here I'd like to teach you a easy solution about How to get wordpress post view statistic without plugin. I use the <a href="http://wordpress.org/extend/themes/twentyeleven" target="_blank">Twenty Eleven</a> theme for an example.

1. Stop the WP-PostViews or other post view statistics plugins in your Wordpress dashboard.

2. Go to "Pppearance-> Editor". Open the "function.php". Add the following codes into this file before the  "?>" tag.
<pre lang="php">
function getPostViews($postID){
$count_key = 'post_views_count';
$count = get_post_meta($postID, $count_key, true);
if($count==''){
delete_post_meta($postID, $count_key);
add_post_meta($postID, $count_key, '0');
return "0 View";
}
return $count.' Views';
}

function setPostViews($postID) {
$count_key = 'post_views_count';
$count = get_post_meta($postID, $count_key, true);
if($count==''){
$count = 0;
delete_post_meta($postID, $count_key);
add_post_meta($postID, $count_key, '0');
}else{
$count++;
update_post_meta($postID, $count_key, $count);
}
}
</pre>

3. Open "single.php". Add the following codes to where you want to show the post view statistic. You can put it anywhere in the "while" loop.

<pre lang="php">
<?php setPostViews(get_the_ID()); ?>
<?php echo getPostViews(get_the_ID()); ?>
</pre>

4. Open the "loop.php" file. Add the following codes at anywhere within the "while" loop. 

<pre lang="php">
<?php echo getPostViews(get_the_ID()); ?>
</pre>

After all these steps, you can know the post view without any wordpress plugins.]]></description>
			<content:encoded><![CDATA[<p>Many of <a href="http://www.yetlive.com/tags/wp" class="st_tag internal_tag" rel="tag" title="Posts tagged with wordpress">WordPress</a> users use <a href="http://wordpress.org/extend/plugins/wp-postviews/" target="_blank">WP-PostView+</a> <a href="http://www.yetlive.com/tags/plugin" class="st_tag internal_tag" rel="tag" title="Posts tagged with Plugin">plugin</a> to help them get the post view statistic. But some people will get problem when using this <a href="http://www.yetlive.com/tags/plugin" class="st_tag internal_tag" rel="tag" title="Posts tagged with Plugin">plugin</a> because of unknown reason.</p>
<p>One of my WP friend find the WP-PostViews will also show a &#8220;ZERO&#8221; for some post.</p>
<p>Here I&#8217;d like to teach you a easy solution about How to get wordpress post view statistic without plugin. I use the <a href="http://wordpress.org/extend/themes/twentyeleven" target="_blank">Twenty Eleven</a> theme for an example.</p>
<p>1. Stop the WP-PostViews or other post view statistics plugins in your WordPress dashboard.</p>
<p>2. Go to &#8220;Pppearance-> Editor&#8221;. Open the &#8220;function.<a href="http://www.yetlive.com/tags/php" class="st_tag internal_tag" rel="tag" title="Posts tagged with php">php</a>&#8221;. Add the following codes into this file before the  &#8220;?>&#8221; tag.</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p1140code1'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p11401"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
</pre></td><td class="code" id="p1140code1"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> getPostViews<span style="color: #009900;">&#40;</span><span style="color: #000088;">$postID</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
<span style="color: #000088;">$count_key</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'post_views_count'</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$count</span> <span style="color: #339933;">=</span> get_post_meta<span style="color: #009900;">&#40;</span><span style="color: #000088;">$postID</span><span style="color: #339933;">,</span> <span style="color: #000088;">$count_key</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$count</span><span style="color: #339933;">==</span><span style="color: #0000ff;">''</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
delete_post_meta<span style="color: #009900;">&#40;</span><span style="color: #000088;">$postID</span><span style="color: #339933;">,</span> <span style="color: #000088;">$count_key</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
add_post_meta<span style="color: #009900;">&#40;</span><span style="color: #000088;">$postID</span><span style="color: #339933;">,</span> <span style="color: #000088;">$count_key</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'0'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">return</span> <span style="color: #0000ff;">&quot;0 View&quot;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #b1b100;">return</span> <span style="color: #000088;">$count</span><span style="color: #339933;">.</span><span style="color: #0000ff;">' Views'</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> setPostViews<span style="color: #009900;">&#40;</span><span style="color: #000088;">$postID</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #000088;">$count_key</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'post_views_count'</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$count</span> <span style="color: #339933;">=</span> get_post_meta<span style="color: #009900;">&#40;</span><span style="color: #000088;">$postID</span><span style="color: #339933;">,</span> <span style="color: #000088;">$count_key</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$count</span><span style="color: #339933;">==</span><span style="color: #0000ff;">''</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
<span style="color: #000088;">$count</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span>
delete_post_meta<span style="color: #009900;">&#40;</span><span style="color: #000088;">$postID</span><span style="color: #339933;">,</span> <span style="color: #000088;">$count_key</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
add_post_meta<span style="color: #009900;">&#40;</span><span style="color: #000088;">$postID</span><span style="color: #339933;">,</span> <span style="color: #000088;">$count_key</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'0'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #b1b100;">else</span><span style="color: #009900;">&#123;</span>
<span style="color: #000088;">$count</span><span style="color: #339933;">++;</span>
update_post_meta<span style="color: #009900;">&#40;</span><span style="color: #000088;">$postID</span><span style="color: #339933;">,</span> <span style="color: #000088;">$count_key</span><span style="color: #339933;">,</span> <span style="color: #000088;">$count</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>3. Open &#8220;single.php&#8221;. Add the following codes to where you want to show the post view statistic. You can put it anywhere in the &#8220;while&#8221; loop.</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p1140code2'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p11402"><td class="line_numbers"><pre>1
2
</pre></td><td class="code" id="p1140code2"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> setPostViews<span style="color: #009900;">&#40;</span>get_the_ID<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> getPostViews<span style="color: #009900;">&#40;</span>get_the_ID<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>4. Open the &#8220;loop.php&#8221; file. Add the following codes at anywhere within the &#8220;while&#8221; loop.</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p1140code3'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p11403"><td class="line_numbers"><pre>1
</pre></td><td class="code" id="p1140code3"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> getPostViews<span style="color: #009900;">&#40;</span>get_the_ID<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>After all these steps, you can know the post view without any wordpress plugins.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.yetlive.com/wordpress/1140.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Build a Quote Function in WordPress Theme</title>
		<link>http://www.yetlive.com/wordpress/1104.html</link>
		<comments>http://www.yetlive.com/wordpress/1104.html#comments</comments>
		<pubDate>Fri, 20 Apr 2012 02:23:34 +0000</pubDate>
		<dc:creator>认真生活</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.yetlive.com/?p=1104</guid>
		<description><![CDATA[Some times we need to quote others comments in our comment. So theme builder should consider to build this function in comments template. Here I want to share one solution to Build a Quote Function in Wordpress Theme.

First, we need to custom comment template in functions.php file.

Then put this JS code to your wordpress theme:
<pre lang="php">(function() {

function $(id) {
	return document.getElementById(id);
}
window['RE'] = {};
window['RE']['$'] = $;
function quote(authorId, commentId, commentBodyId, commentBox) {
	var author = RE.$(authorId).innerHTML;
	var comment = RE.$(commentBodyId).innerHTML;

	var insertStr = '&#60; blockquote &#62;'; insertStr += '\n&#60; strong&#62;<a href="#' + commentId + '">' + author.replace(/\t&#124;\n&#124;\r\n/g, "") + '</a>:'; insertStr += comment.replace(/\t/g, ""); insertStr += '&#60; /blockquote&#62;\n';
insertQuote(insertStr, commentBox);
}
function insertQuote(insertStr, commentBox) { if(RE.$(commentBox) &#38;&#38; RE.$(commentBox).type == 'textarea') {
field = RE.$(commentBox);
 } else { alert("The comment box does not exist!");
return false;
} if(document.selection) {
field.focus();
sel = document.selection.createRange();
sel.text = insertStr;
field.focus();
} else if (field.selectionStart &#124;&#124; field.selectionStart == '0') {
var startPos = field.selectionStart;
var endPos = field.selectionEnd;
var cursorPos = startPos;
field.value = field.value.substring(0, startPos) + insertStr + field.value.substring(endPos, field.value.length);
cursorPos += insertStr.length;
field.focus();
field.selectionStart = cursorPos;
field.selectionEnd = cursorPos;
} else {
field.value += insertStr; field.focus();
}
}
window['RE_CON'] = {};
window['RE_CON']['quote'] = quote; }
)
();</pre>
Then put a quote link in comments template.
<pre lang="php"><a onclick="RE_CON.quote('commentauthor-&#60;?php comment_ID() ?&#62;', '&#60; ?php echo $add_below-$comment-&#62;comment_ID ?&#62;', 'body-&#60;?php comment_ID() ?&#62;', 'comment');" href="javascript:void(0);"> Quote </a></pre>
<span style="color: #ff0000;">commentauthor-</span> and <span style="color: #ff0000;">body-</span> should be custom according to your template. You can even find some <a href="http://www.litecoupon.com/" target="_blank">discount coupon codes</a> to purchase software.]]></description>
			<content:encoded><![CDATA[<p>Some times we need to quote others comments in our comment. So theme builder should consider to build this function in comments template. Here I want to share one solution to Build a Quote Function in <a href="http://www.yetlive.com/tags/wp" class="st_tag internal_tag" rel="tag" title="Posts tagged with wordpress">WordPress</a> Theme.</p>
<p>First, we need to custom comment template in functions.<a href="http://www.yetlive.com/tags/php" class="st_tag internal_tag" rel="tag" title="Posts tagged with php">php</a> file.</p>
<p>Then put this JS code to your wordpress theme:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p1104code4'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p11044"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
</pre></td><td class="code" id="p1104code4"><pre class="php" style="font-family:monospace;"><span style="color: #009900;">&#40;</span><span style="color: #000000; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> $<span style="color: #009900;">&#40;</span>id<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #b1b100;">return</span> document<span style="color: #339933;">.</span>getElementById<span style="color: #009900;">&#40;</span>id<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
window<span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'RE'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#123;</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
window<span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'RE'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'$'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> $<span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">function</span> quote<span style="color: #009900;">&#40;</span>authorId<span style="color: #339933;">,</span> commentId<span style="color: #339933;">,</span> commentBodyId<span style="color: #339933;">,</span> commentBox<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">var</span> author <span style="color: #339933;">=</span> RE<span style="color: #339933;">.</span>$<span style="color: #009900;">&#40;</span>authorId<span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span>innerHTML<span style="color: #339933;">;</span>
	<span style="color: #000000; font-weight: bold;">var</span> comment <span style="color: #339933;">=</span> RE<span style="color: #339933;">.</span>$<span style="color: #009900;">&#40;</span>commentBodyId<span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span>innerHTML<span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #000000; font-weight: bold;">var</span> insertStr <span style="color: #339933;">=</span> <span style="color: #0000ff;">'&amp;lt; blockquote &amp;gt;'</span><span style="color: #339933;">;</span> insertStr <span style="color: #339933;">+=</span> <span style="color: #0000ff;">'\n&amp;lt; strong&amp;gt;&lt;a href=&quot;#'</span> <span style="color: #339933;">+</span> commentId <span style="color: #339933;">+</span> <span style="color: #0000ff;">'&quot;&gt;'</span> <span style="color: #339933;">+</span> author<span style="color: #339933;">.</span>replace<span style="color: #009900;">&#40;</span><span style="color: #339933;">/</span>\t<span style="color: #339933;">|</span>\n<span style="color: #339933;">|</span>\r\n<span style="color: #339933;">/</span>g<span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">+</span> <span style="color: #0000ff;">'&lt;/a&gt;:'</span><span style="color: #339933;">;</span> insertStr <span style="color: #339933;">+=</span> comment<span style="color: #339933;">.</span>replace<span style="color: #009900;">&#40;</span><span style="color: #339933;">/</span>\t<span style="color: #339933;">/</span>g<span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> insertStr <span style="color: #339933;">+=</span> <span style="color: #0000ff;">'&amp;lt; /blockquote&amp;gt;\n'</span><span style="color: #339933;">;</span>
insertQuote<span style="color: #009900;">&#40;</span>insertStr<span style="color: #339933;">,</span> commentBox<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">function</span> insertQuote<span style="color: #009900;">&#40;</span>insertStr<span style="color: #339933;">,</span> commentBox<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span>RE<span style="color: #339933;">.</span>$<span style="color: #009900;">&#40;</span>commentBox<span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;</span>amp<span style="color: #339933;">;&amp;</span>amp<span style="color: #339933;">;</span> RE<span style="color: #339933;">.</span>$<span style="color: #009900;">&#40;</span>commentBox<span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span>type <span style="color: #339933;">==</span> <span style="color: #0000ff;">'textarea'</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
field <span style="color: #339933;">=</span> RE<span style="color: #339933;">.</span>$<span style="color: #009900;">&#40;</span>commentBox<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
 <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span> alert<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;The comment box does not exist!&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">return</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span>document<span style="color: #339933;">.</span>selection<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
field<span style="color: #339933;">.</span>focus<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
sel <span style="color: #339933;">=</span> document<span style="color: #339933;">.</span>selection<span style="color: #339933;">.</span>createRange<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
sel<span style="color: #339933;">.</span>text <span style="color: #339933;">=</span> insertStr<span style="color: #339933;">;</span>
field<span style="color: #339933;">.</span>focus<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>field<span style="color: #339933;">.</span>selectionStart <span style="color: #339933;">||</span> field<span style="color: #339933;">.</span>selectionStart <span style="color: #339933;">==</span> <span style="color: #0000ff;">'0'</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
<span style="color: #000000; font-weight: bold;">var</span> startPos <span style="color: #339933;">=</span> field<span style="color: #339933;">.</span>selectionStart<span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">var</span> endPos <span style="color: #339933;">=</span> field<span style="color: #339933;">.</span>selectionEnd<span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">var</span> cursorPos <span style="color: #339933;">=</span> startPos<span style="color: #339933;">;</span>
field<span style="color: #339933;">.</span>value <span style="color: #339933;">=</span> field<span style="color: #339933;">.</span>value<span style="color: #339933;">.</span>substring<span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span> startPos<span style="color: #009900;">&#41;</span> <span style="color: #339933;">+</span> insertStr <span style="color: #339933;">+</span> field<span style="color: #339933;">.</span>value<span style="color: #339933;">.</span>substring<span style="color: #009900;">&#40;</span>endPos<span style="color: #339933;">,</span> field<span style="color: #339933;">.</span>value<span style="color: #339933;">.</span>length<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
cursorPos <span style="color: #339933;">+=</span> insertStr<span style="color: #339933;">.</span>length<span style="color: #339933;">;</span>
field<span style="color: #339933;">.</span>focus<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
field<span style="color: #339933;">.</span>selectionStart <span style="color: #339933;">=</span> cursorPos<span style="color: #339933;">;</span>
field<span style="color: #339933;">.</span>selectionEnd <span style="color: #339933;">=</span> cursorPos<span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span>
field<span style="color: #339933;">.</span>value <span style="color: #339933;">+=</span> insertStr<span style="color: #339933;">;</span> field<span style="color: #339933;">.</span>focus<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span>
window<span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'RE_CON'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#123;</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
window<span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'RE_CON'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'quote'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> quote<span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>Then put a quote link in comments template.</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p1104code5'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p11045"><td class="line_numbers"><pre>1
</pre></td><td class="code" id="p1104code5"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>a onclick<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;RE_CON.quote('commentauthor-&amp;lt;?php comment_ID() ?&amp;gt;', '&amp;lt; ?php echo <span style="color: #006699; font-weight: bold;">$add_below</span>-<span style="color: #006699; font-weight: bold;">$comment</span>-&amp;gt;comment_ID ?&amp;gt;', 'body-&amp;lt;?php comment_ID() ?&amp;gt;', 'comment');&quot;</span> href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;javascript:void(0);&quot;</span><span style="color: #339933;">&gt;</span> Quote <span style="color: #339933;">&lt;/</span>a<span style="color: #339933;">&gt;</span></pre></td></tr></table></div>

<p><span style="color: #ff0000;">commentauthor-</span> and <span style="color: #ff0000;">body-</span> should be custom according to your template. You can even find some <a href="http://www.litecoupon.com/" target="_blank">discount coupon codes</a> to purchase software.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.yetlive.com/wordpress/1104.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SEO Tips Help You Ranking #1 Position</title>
		<link>http://www.yetlive.com/tech/913.html</link>
		<comments>http://www.yetlive.com/tech/913.html#comments</comments>
		<pubDate>Fri, 06 Apr 2012 03:34:23 +0000</pubDate>
		<dc:creator>认真生活</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://www.yetlive.com/?p=913</guid>
		<description><![CDATA[Most site gain majority traffic from search engines like google or yahoo. Any keywords ranking #1 in search engines will bring big traffic. Here, I will tell you exactly how the top ranking sites for some of the most difficult keywords are currently at that elusive #1 position in Google and how they are doing it.
<h3>Quality content lead to <a href="http://e-articles.info/e/a/title/8-Quick-Steps-to-High-PageRank/" target="_blank">high pagerank</a></h3>
Any search engines loves original and useful information. Remember that it is very important to provide fresh and significant information as it goes a long way. Search engines will carefully check your information and them classify your website whether it's important.
<h3>Build as many as backlinks as you can</h3>
Yes, backlink is extremely important to websites. The site with the most backlinks wins. As most seoers know that the yahoo judge a website most by its backlinks. Other search engines like google also rely on backlinks.
<h3>Do not use Outdated web design Trends</h3>
Here I think <a href="http://e-articles.info/e/a/title/Outdated-Web-Design-Trends/" target="_blank">outdated web design</a> include these  three items:splash pages, music on your website and many flash. Which search engines looking for are text-based content and text-based hyperlinks.  And as splash pages and music may annoy your readers.
<h3>Pick your keywords and description well</h3>
While there is a said that keywords and description is not so important as it used to be, well designed keywords and description do effect your ranking results. Always think careful about picking a most suitable keyword and related phrases for your site. Do not change your keywords frequently.]]></description>
			<content:encoded><![CDATA[<p>Most site gain majority traffic from search engines like google or yahoo. Any keywords ranking #1 in search engines will bring big traffic. Here, I will tell you exactly how the top ranking sites for some of the most difficult keywords are currently at that elusive #1 position in Google and how they are doing it.</p>
<h3>Quality content lead to <a href="http://e-articles.info/e/a/title/8-Quick-Steps-to-High-PageRank/" target="_blank">high pagerank</a></h3>
<p>Any search engines loves original and useful information. Remember that it is very important to provide fresh and significant information as it goes a long way. Search engines will carefully check your information and them classify your website whether it&#8217;s important.</p>
<h3>Build as many as backlinks as you can</h3>
<p>Yes, backlink is extremely important to websites. The site with the most backlinks wins. As most seoers know that the yahoo judge a website most by its backlinks. Other search engines like google also rely on backlinks.</p>
<h3>Do not use Outdated web design Trends</h3>
<p>Here I think <a href="http://e-articles.info/e/a/title/Outdated-Web-Design-Trends/" target="_blank">outdated web design</a> include these  three items:splash pages, music on your website and many flash. Which search engines looking for are text-based content and text-based hyperlinks.  And as splash pages and music may annoy your readers.</p>
<h3>Pick your keywords and description well</h3>
<p>While there is a said that keywords and description is not so important as it used to be, well designed keywords and description do effect your ranking results. Always think careful about picking a most suitable keyword and related phrases for your site. Do not change your keywords frequently.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.yetlive.com/tech/913.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>4 SEO tips for wordpress</title>
		<link>http://www.yetlive.com/tech/853.html</link>
		<comments>http://www.yetlive.com/tech/853.html#comments</comments>
		<pubDate>Wed, 07 Mar 2012 09:50:31 +0000</pubDate>
		<dc:creator>认真生活</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[软软]]></category>

		<guid isPermaLink="false">http://www.tinydiary.cn/?p=834</guid>
		<description><![CDATA[Wordpress is the most popular blog system all around the world. I know there are many SEOers uses wordpress to build their website and they gain reach experiences on how to make their wordpress websites search engine friendly. But I still want to share 4 tips to optimize your blogs.

1.optimize robots.txt

File robots.txt is a rule for all search engines. It tells the search engines which page can index. Some times, we need to forbidden some pages. We know that repeated pages is harmful to <a href="http://www.maxdirectory.eu/Internet/SEO/" target="_blank">SEO</a>. You can write your robots.txt content like this:
<blockquote>User-agent: *
Disallow: /wp-admin
Sitemap: http://www.tinydiary.cn/sitemap.xml</blockquote>
In this robots.txt, you forbidden all search engines not index your blog directory related to aministration and stop from being hacked.

2.just show summary in feed

Some bloggers show full text in their feed. But it brings a risk to being copied by some applications. And those repeated pages will let search engines don't index your original  page. It's very bad for <a href="http://www.maxdirectory.eu/Internet/SEO/" target="_blank">seo</a>. So, the simplest solution is to show just summary in your feed.

3.use javascript to print your sidebar

Sidebar often offer some additional information about your blog, but it is not so good for SEO. But search engine can not read javascript. We use this feature to avoid some useless content.

4.list your blog in <a href="http://www.maxdirectory.eu/Internet/SEO/" target="_blank">SEO directory</a>

<a href="http://www.maxdirectory.eu/Internet/Web-directories/" target="_blank">Web directories</a> can bring rich back links especially directories like <a href="http://www.dmoz.org/" target="_blank">DMOZ</a> or Yahoo directory. Back links is very important to SEO. So this is the reason why I said "SEO" directory.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.yetlive.com/tags/wp" class="st_tag internal_tag" rel="tag" title="Posts tagged with wordpress">WordPress</a> is the most popular blog system all around the world. I know there are many SEOers uses <a href="http://www.yetlive.com/tags/wp" class="st_tag internal_tag" rel="tag" title="Posts tagged with wordpress">wordpress</a> to build their website and they gain reach experiences on how to make their <a href="http://www.yetlive.com/tags/wp" class="st_tag internal_tag" rel="tag" title="Posts tagged with wordpress">wordpress</a> websites search engine friendly. But I still want to share 4 tips to optimize your blogs.</p>
<p>1.optimize robots.txt</p>
<p>File robots.txt is a rule for all search engines. It tells the search engines which page can index. Some times, we need to forbidden some pages. We know that repeated pages is harmful to <a href="http://www.maxdirectory.eu/Internet/SEO/" target="_blank">SEO</a>. You can write your robots.txt content like this:</p>
<blockquote><p>User-agent: *<br />
Disallow: /wp-admin<br />
Sitemap: http://www.tinydiary.cn/sitemap.xml</p></blockquote>
<p>In this robots.txt, you forbidden all search engines not index your blog directory related to aministration and stop from being hacked.</p>
<p>2.just show summary in feed</p>
<p>Some bloggers show full text in their feed. But it brings a risk to being copied by some applications. And those repeated pages will let search engines don&#8217;t index your original  page. It&#8217;s very bad for <a href="http://www.maxdirectory.eu/Internet/SEO/" target="_blank">seo</a>. So, the simplest solution is to show just summary in your feed.</p>
<p>3.use javascript to print your sidebar</p>
<p>Sidebar often offer some additional information about your blog, but it is not so good for <a href="http://www.yetlive.com/tags/seo" class="st_tag internal_tag" rel="tag" title="Posts tagged with seo">SEO</a>. But search engine can not read javascript. We use this feature to avoid some useless content.</p>
<p>4.list your blog in <a href="http://www.maxdirectory.eu/Internet/SEO/" target="_blank">SEO directory</a></p>
<p><a href="http://www.maxdirectory.eu/Internet/Web-directories/" target="_blank">Web directories</a> can bring rich back links especially directories like <a href="http://www.dmoz.org/" target="_blank">DMOZ</a> or Yahoo directory. Back links is very important to SEO. So this is the reason why I said &#8220;SEO&#8221; directory.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.yetlive.com/tech/853.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Tips for making a perfect wordpress theme</title>
		<link>http://www.yetlive.com/web/901.html</link>
		<comments>http://www.yetlive.com/web/901.html#comments</comments>
		<pubDate>Mon, 23 Jan 2012 14:37:50 +0000</pubDate>
		<dc:creator>认真生活</dc:creator>
				<category><![CDATA[Review]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.yetlive.com/?p=901</guid>
		<description><![CDATA[When building a wordpress theme, especially a theme for publish, you need to think of many points. In my opinion, there are four key points you must pay attention to. There are compatibility, easy of use, have good look and multifunction.
<h3>Compatibility</h3>
In my opinion, a good theme should always be compatible with most navigators. The most important thing is to run perfect under IE6. For other navigators that support W3C standards, there is little things you need to do. There is a additional aspect you should think of while you want to make a popular theme. As much wordpress users prefer to get <a href="http://www.wprex.com" target="_blank">wp theme free</a>, you may don't supply further modification. But you should always considered that users run different WP versions.
<h3>Easy of use</h3>
Never ask your users to learn any of HTML or CSS. The just need a simple <a href="http://www.wprex.com" target="_blank">wp theme free</a>. They don't want to learn anything more. So, make your wp theme easy to use but leave some freedom for a small group of users who knows how to modifying php codes.
<h3>Have good look</h3>
Most of users justify a wordpress theme by its appearance. Build your wp theme beautiful and you'll find it popular with many users.
<h3>Multifunction</h3>
Some people need a powerful theme. It's just like some people like Ghost OS. Because the don't need much setting and can make their blog or website powerful.]]></description>
			<content:encoded><![CDATA[<p>When building a <a href="http://www.yetlive.com/tags/wp" class="st_tag internal_tag" rel="tag" title="Posts tagged with wordpress">wordpress</a> theme, especially a theme for publish, you need to think of many points. In my opinion, there are four key points you must pay attention to. There are compatibility, easy of use, have good look and multifunction.</p>
<h3>Compatibility</h3>
<p>In my opinion, a good theme should always be compatible with most navigators. The most important thing is to run perfect under IE6. For other navigators that support W3C standards, there is little things you need to do. There is a additional aspect you should think of while you want to make a popular theme. As much wordpress users prefer to get <a href="http://www.wprex.com" target="_blank">wp theme free</a>, you may don&#8217;t supply further modification. But you should always considered that users run different WP versions.</p>
<h3>Easy of use</h3>
<p>Never ask your users to learn any of HTML or CSS. The just need a simple <a href="http://www.wprex.com" target="_blank">wp theme free</a>. They don&#8217;t want to learn anything more. So, make your wp theme easy to use but leave some freedom for a small group of users who knows how to modifying <a href="http://www.yetlive.com/tags/php" class="st_tag internal_tag" rel="tag" title="Posts tagged with php">php</a> codes.</p>
<h3>Have good look</h3>
<p>Most of users justify a wordpress theme by its appearance. Build your wp theme beautiful and you&#8217;ll find it popular with many users.</p>
<h3>Multifunction</h3>
<p>Some people need a powerful theme. It&#8217;s just like some people like Ghost OS. Because the don&#8217;t need much setting and can make their blog or website powerful.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.yetlive.com/web/901.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Tips for Beginners</title>
		<link>http://www.yetlive.com/tech/924.html</link>
		<comments>http://www.yetlive.com/tech/924.html#comments</comments>
		<pubDate>Sat, 07 Jan 2012 03:17:34 +0000</pubDate>
		<dc:creator>认真生活</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[软软]]></category>

		<guid isPermaLink="false">http://www.yetlive.com/?p=924</guid>
		<description><![CDATA[There are many open source blog systems. But wordpress is the most popular because of is powerful functions and large numbers of plugins. As a result, even wordpress is a blog system, there are many webmaster use it as a <a href="http://www.articleinput.com/e/a/title/How-to-effectively-use-a-content-management-system-to-build-a-website/" target="_blank">content management system</a> to build their websites.

No matter how much you know about HTML or PHP, is easy to use wordpress to build a website. You just need a web host and a domain. Then you install a wordpress on your web hosting and set up it by following its tips. Don't worry about <a href="http://www.articleinput.com/e/s/s/Web-Design-Services/" target="_blank">web design</a>. There are many people want to help you. Just login into your account and you will find how they can help you. All you should do is to pick a theme most suit your request for your website. If there are no blog theme match your request, ask Google. Always remember there are many people ready to help you on how to use wordpress at any time.

As you run your site for some time, you may want to custom your website. You can check the<a href="http://codex.wordpress.org/Main_Page" target="_blank"> wordpress codex</a> for most questions. In the showcase, you will find many excellent websites for your examples. From celebrities like <a href="http://www.articleinput.com/e/a/title/Ricky-Martin-confirmed-he-is-gay-in-a-personal-interview/" target="_blank">Ricky Martin</a> to business giant like <a href="http://wordpress.org/showcase/wsj-magazine/" target="_blank">WSJ. Magazine</a> all use wordpress. You will find your inspiration from these great sites.]]></description>
			<content:encoded><![CDATA[<p>There are many open source blog systems. But <a href="http://www.yetlive.com/tags/wp" class="st_tag internal_tag" rel="tag" title="Posts tagged with wordpress">wordpress</a> is the most popular because of is powerful functions and large numbers of plugins. As a result, even <a href="http://www.yetlive.com/tags/wp" class="st_tag internal_tag" rel="tag" title="Posts tagged with wordpress">wordpress</a> is a blog system, there are many webmaster use it as a <a href="http://www.articleinput.com/e/a/title/How-to-effectively-use-a-content-management-system-to-build-a-website/" target="_blank">content management system</a> to build their websites.</p>
<p>No matter how much you know about HTML or <a href="http://www.yetlive.com/tags/php" class="st_tag internal_tag" rel="tag" title="Posts tagged with php">PHP</a>, is easy to use wordpress to build a website. You just need a web host and a domain. Then you install a wordpress on your web hosting and set up it by following its tips. Don&#8217;t worry about <a href="http://www.articleinput.com/e/s/s/Web-Design-Services/" target="_blank">web design</a>. There are many people want to help you. Just login into your account and you will find how they can help you. All you should do is to pick a theme most suit your request for your website. If there are no blog theme match your request, ask Google. Always remember there are many people ready to help you on how to use wordpress at any time.</p>
<p>As you run your site for some time, you may want to custom your website. You can check the<a href="http://codex.wordpress.org/Main_Page" target="_blank"> wordpress codex</a> for most questions. In the showcase, you will find many excellent websites for your examples. From celebrities like <a href="http://www.articleinput.com/e/a/title/Ricky-Martin-confirmed-he-is-gay-in-a-personal-interview/" target="_blank">Ricky Martin</a> to business giant like <a href="http://wordpress.org/showcase/wsj-magazine/" target="_blank">WSJ. Magazine</a> all use wordpress. You will find your inspiration from these great sites.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.yetlive.com/tech/924.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 low price shared hosting recommendation</title>
		<link>http://www.yetlive.com/domain-host/1118.html</link>
		<comments>http://www.yetlive.com/domain-host/1118.html#comments</comments>
		<pubDate>Fri, 30 Dec 2011 12:51:13 +0000</pubDate>
		<dc:creator>认真生活</dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[服务器]]></category>

		<guid isPermaLink="false">http://www.yetlive.com/?p=1118</guid>
		<description><![CDATA[A good but cheap web hosting is always our favorite. But most of cheap hosting are not so good. Here we recommend 5 cheap but powerful shared hosting.

1. BlueHost

BlueHost is the 10th largest hosting company in the world and are one of the fastest growing web hosting companies. You can multi-domain to one hosting plan. The price is only $3.95/month now with a new domain.

2. HostMonster

Hostmonster is one of the top known web hosts in the industry and has been involved with more than 600,000 web domain registration. You can host UNLIMITED websites under 1 account at $3.95 per month on award winning hosting server! HostMonster is $3.95 per month.

3. IX Web Hosting

IX Web Hosting has been in web hosting business since 1999, and they now have over 110,000 customers serving almost 500k sites. IX Web Hosting guarantees 99.9% uptime and ensures this by owning its own state-of-the-art data centers. IX Web Hosting is $3.95 per month.

4. WebHostingPad

Webhostingpad offers a huge array of features and high-quality customer service. You can grow your site without worrying about hidden fees, get free and instant setup, and a free domain name for life. WebHostingPad is $2.99 per month.

5. iPage

Whether they're running an ultra low cost promotion or not, Ipage is always a smart hosting choice. They offer, at no cost, an exclusive security suite worth $100, $200 in marketing credits and 24/7 North American based customer support organized to help you grow your web site.

For more cheap web hosting solution, please refer to <a href="http://findwebhosting.com/">findwebhosting.com</a>.]]></description>
			<content:encoded><![CDATA[<p>A good but cheap web hosting is always our favorite. But most of cheap hosting are not so good. Here we recommend 5 cheap but powerful shared hosting.</p>
<p>1. BlueHost</p>
<p>BlueHost is the 10th largest hosting company in the world and are one of the fastest growing web hosting companies. You can multi-domain to one hosting plan. The price is only $3.95/month now with a new domain.</p>
<p>2. HostMonster</p>
<p>Hostmonster is one of the top known web hosts in the industry and has been involved with more than 600,000 web domain registration. You can host UNLIMITED websites under 1 account at $3.95 per month on award winning hosting server! HostMonster is $3.95 per month.</p>
<p>3. IX Web Hosting</p>
<p>IX Web Hosting has been in web hosting business since 1999, and they now have over 110,000 customers serving almost 500k sites. IX Web Hosting guarantees 99.9% uptime and ensures this by owning its own state-of-the-art data centers. IX Web Hosting is $3.95 per month.</p>
<p>4. WebHostingPad</p>
<p>Webhostingpad offers a huge array of features and high-quality customer service. You can grow your site without worrying about hidden fees, get free and instant setup, and a free domain name for life. WebHostingPad is $2.99 per month.</p>
<p>5. iPage</p>
<p>Whether they&#8217;re running an ultra low cost promotion or not, Ipage is always a smart hosting choice. They offer, at no cost, an exclusive security suite worth $100, $200 in marketing credits and 24/7 North American based customer support organized to help you grow your web site.</p>
<p>For more cheap web hosting solution, please refer to <a href="http://findwebhosting.com/">findwebhosting.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.yetlive.com/domain-host/1118.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.983 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-05-28 21:36:57 -->

