WordPress函数文档current_user_can_for_blog()
调用do_feed_rdf的hook钩子 描述 译文 装载RDF RSS 0.91版本feed模板。 原文 L…
调用do_feed_rdf的hook钩子
描述
译文
装载RDF RSS 0.91版本feed模板。
原文
Load the RDF RSS 0.91 Feed template.
用法
<?php do_feed_rdf() ?>
参数
None.
返回值
(void)
This function does not return a value.
注意
- 使用到: load_template() to load feed template.
历史
添加于 版本: 2.1.0
源文件
do_feed_rdf() 函数的代码位于 wp-includes/functions.php
.
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* ———————————-
* wordpress函数 kim收集
* ———————————- */
/**
* Load the RDF RSS 0.91 Feed template.
*
* @since 2.1.0
*
* @see load_template()
*/
function do_feed_rdf() {
load_template( ABSPATH . WPINC . ‘/feed-rdf.php’ );
}
|
- 原文:http://codex.wordpress.org/Function_Reference/do_feed_rdf
类别:WordPress函数文档、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
评论功能已经关闭!