<?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>Erick &#187; 函数</title>
	<atom:link href="http://blog.xiongchuan.org/tag/function/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.xiongchuan.org</link>
	<description>Even a great life is only a life until you make it.</description>
	<lastBuildDate>Thu, 10 Mar 2011 14:44:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
	
<!-- Start Of Script Generated By WP-PostViews Plus -->
<script type='text/javascript' src='http://blog.xiongchuan.org/wp-includes/js/jquery/jquery.js?ver=1.4.4'></script>
<script type="text/javascript">
/* <![CDATA[ */
/* ]]> */
</script>
<!-- End Of Script Generated By WP-PostViews Plus -->
	<item>
		<title>dopost is not a function 解决</title>
		<link>http://blog.xiongchuan.org/dopost-is-not-a-function-resove.html</link>
		<comments>http://blog.xiongchuan.org/dopost-is-not-a-function-resove.html#comments</comments>
		<pubDate>Sat, 03 Oct 2009 07:07:48 +0000</pubDate>
		<dc:creator>Erick</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[dedecms]]></category>
		<category><![CDATA[函数]]></category>

		<guid isPermaLink="false">http://www.pigblog.net/?p=291</guid>
		<description><![CDATA[今天在修改dedecms的时候，js里给一个元素定义了一个方法 var dopost=function(){} FF下面debug的时候，奇怪的报dopost is not a function,实际上是已经定义了。 找了半天才知道，dedecms里面有一个隐藏input 它的name=dopost，就是这个原因，命名冲突了 只要把定义的方法改个名字 var doajax=function(){} 就OK了。 Related Posts博客归来，更简洁了发一个dedeEIMS企业模板给博客加个作者&#124;wordpress作者函数Biolab.cn]]></description>
			<content:encoded><![CDATA[<p>今天在修改dedecms的时候，js里给一个元素定义了一个方法<br />
var dopost=function(){}<br />
FF下面debug的时候，奇怪的报dopost is not a function,实际上是已经定义了。<br />
找了半天才知道，dedecms里面有一个隐藏input 它的name=dopost，就是这个原因，命名冲突了<br />
只要把定义的方法改个名字<br />
var doajax=function(){}<br />
就OK了。</p>
<h4  class="entry-title">Related Posts</h4><ul class="related_post"><li><a href="http://blog.xiongchuan.org/blog-back.html" title="博客归来，更简洁了">博客归来，更简洁了</a></li><li><a href="http://blog.xiongchuan.org/an-enterprise-theme-for-dedeeims.html" title="发一个dedeEIMS企业模板">发一个dedeEIMS企业模板</a></li><li><a href="http://blog.xiongchuan.org/add-author-name-for-wordpress.html" title="给博客加个作者|wordpress作者函数">给博客加个作者|wordpress作者函数</a></li><li><a href="http://blog.xiongchuan.org/biolab-cn-dedecms-template.html" title="Biolab.cn">Biolab.cn</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://blog.xiongchuan.org/dopost-is-not-a-function-resove.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>给博客加个作者&#124;wordpress作者函数</title>
		<link>http://blog.xiongchuan.org/add-author-name-for-wordpress.html</link>
		<comments>http://blog.xiongchuan.org/add-author-name-for-wordpress.html#comments</comments>
		<pubDate>Sun, 16 Aug 2009 01:57:25 +0000</pubDate>
		<dc:creator>Erick</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[函数]]></category>

		<guid isPermaLink="false">http://www.pigblog.net/?p=228</guid>
		<description><![CDATA[&#60;?php the_author(); ?&#62; 显示文章的作者 &#60;?php the_author_description(); ?&#62; 显示文章作者的描述（作者个人资料中的描述） &#60;?php the_author_login(); ?&#62; 显示文章作者的登录名 &#60;?php the_author_firstname(); ?&#62; 显示文章作者的firstname（名） &#60;?php the_author_lastname(); ?&#62; 显示文章作者的lastname（姓） &#60;?php the_author_nickname(); ?&#62; 显示文章作者的昵称 &#60;?php the_author_ID(); ?&#62; 显示文章作者的ID号 &#60;?php the_author_email(); ?&#62; 显示文章作者的电子邮箱 &#60;?php the_author_url(); ?&#62; 显示文章作者的网站地址 &#60;?php the_author_link (); ?&#62;(添加于2.1版本) 显示一个以文章作者名为链接名，链接地址为文章作者的网址的链接。 &#60;?php the_author_icq(); ?&#62; (不推荐使用) 显示文章作者的icq &#60;?php the_author_aim(); ?&#62; 显示文章作者的aim &#60;?php the_author_yim(); ?&#62; 显示文章作者的yim &#60;?php the_author_msn(); ?&#62; [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>&lt;?php the_author(); ?&gt; 显示文章的作者</p>
<p>&lt;?php the_author_description(); ?&gt; 显示文章作者的描述（作者个人资料中的描述）</p>
<p>&lt;?php the_author_login(); ?&gt; 显示文章作者的登录名</p>
<p>&lt;?php the_author_firstname(); ?&gt; 显示文章作者的firstname（名）</p>
<p>&lt;?php the_author_lastname(); ?&gt; 显示文章作者的lastname（姓）</p>
<p><span style="font-family: mceinline;">&lt;?php the_author_nickname(); ?&gt; 显示文章作者的昵称</span></p>
<p>&lt;?php the_author_ID(); ?&gt; 显示文章作者的ID号</p>
<p>&lt;?php the_author_email(); ?&gt; 显示文章作者的电子邮箱</p>
<p><span id="more-228"></span>&lt;?php the_author_url(); ?&gt; 显示文章作者的网站地址</p>
<p>&lt;?php the_author_link (); ?&gt;(添加于2.1版本) 显示一个以文章作者名为链接名，链接地址为文章作者的网址的链接。</p>
<p>&lt;?php the_author_icq(); ?&gt; (不推荐使用) 显示文章作者的icq</p>
<p>&lt;?php the_author_aim(); ?&gt; 显示文章作者的aim</p>
<p>&lt;?php the_author_yim(); ?&gt; 显示文章作者的yim</p>
<p>&lt;?php the_author_msn(); ?&gt; (不推荐使用) 显示文章作者的msn</p>
<p>&lt;?php the_author_posts(); ?&gt; 显示文章作者已发表文章的篇数</p>
<p>&lt;?php the_author_posts_link(); ?&gt; 显示一个链接到文章作者已发表文章列表的链接</p>
<p>&lt;?php list_authors(); ?&gt; (不推荐使用) 显示blog所有作者和他们的相关信息。完整函数如下：<br />
参数：<br />
optioncount：是否显示各作者已发表文章的篇数，可选值为：TRUE 和 FALSE（默认值）<br />
exclude_admin：是否不列出管理员，可选值为：TRUE（默认值） 和 FALSE<br />
show_fullname ：是否显示各作者的全名，可选值为：TRUE 和 FALSE（默认值）<br />
hide_empty：是否不显示发表文章数为0的作者，可选值为：TRUE（默认值） 和 FALSE<br />
feed：链接到各个作者发表文章的RSS供稿种子链接名，默认为空，不显示RSS供稿种子<br />
feed_image：供稿种子的图片地址，如果提供此项，则覆盖上面的feed，默认为空</p>
<p>&lt;?php wp_list_authors(); ?&gt; 显示blog作者列表，如果作者发表过文章，则他的名字将链接到他发表的文章列表中。可定义是否显示其他信息。<br />
参数：<br />
optioncount：是否显示各个作者发表文章数，可选值：true 和 false（默认值）<br />
exclude_admin：是否不显示“admin”用户，可选值：true（默认值） 和 false<br />
show_fullname：是否显示各个作者的全名，如果不显示，将显示昵称。可选值：true 和 false（默认值）<br />
hide_empty：是否不显示发表文章数为0的作者，可选值：true（默认值） 和 false<br />
feed：链接到各个作者发表文章的RSS供稿种子链接名，默认为空，不显示RSS供稿种子<br />
feed_image：供稿种子的图片地址，如果提供此项，则覆盖上面的feed，默认为空。</p></blockquote>
<p>记录下来，留着以后用，学习中</p>
<h4  class="entry-title">Related Posts</h4><ul class="related_post"><li><a href="http://blog.xiongchuan.org/blog-back.html" title="博客归来，更简洁了">博客归来，更简洁了</a></li><li><a href="http://blog.xiongchuan.org/batch-delete-blank-lines.html" title="PHP批量删除空行|wordpress迁移的艰辛">PHP批量删除空行|wordpress迁移的艰辛</a></li><li><a href="http://blog.xiongchuan.org/flickr-photo-album-for-wordpress.html" title="Flickr Photo Album for WordPress|wp 相册">Flickr Photo Album for WordPress|wp 相册</a></li><li><a href="http://blog.xiongchuan.org/dopost-is-not-a-function-resove.html" title="dopost is not a function 解决">dopost is not a function 解决</a></li><li><a href="http://blog.xiongchuan.org/change-blog-program-to-wordpress.html" title="换博客啦">换博客啦</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://blog.xiongchuan.org/add-author-name-for-wordpress.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

