除了最后两个函数,这些函数都需在The_Loop中使用,并没有相关的参数。
the_author 显示文章的作者
the_author_description 显示文章作者的描述(作者个人资料中的描述)
the_author_login 显示文章作者的登录名
the_author_firstname 显示文章作者的firstname(名)
the_author_lastname 显示文章作者的lastname(姓)
the_author_nickname 显示文章作者的昵称
the_author_ID 显示文章作者的ID号
the_author_email 显示文章作...
WP相关, 函数详解阅读全文
comments_template <?php comments_template( $file, $separate_comments ); ?>
包含评论模板.$file 默认值:’/comments.php’, $separate_comments 是否按评论类型分隔评论
get_footer <?php get_footer( $name ); ?>
包含页脚模版。$name 调用 ‘/footer-name.php’.
get_header <?php get_header( $name ); ?>
包含页头模版。$name 调用 ‘/header-name.php’.
get_sidebar <?php get_sidebar( $name...
WP相关, 函数详解阅读全文
add_ping <?php add_ping( $post_id, $uri ) ?>
为已有ping添加URL.$post_id是文章编号,$uri是Ping URI.
check_comment <?php check_comment( $author, $email, $url, $comment, $user_ip, $user_agent, $comment_type ) ?>
判断评论是否传递WordPress Comment_Moderation 的内部检验。详情见:http://codex.wordpress.org/Function_Reference/check_comment.
discover_pingback_server_uri <?php discov...
WP相关, 函数详解阅读全文
cat_is_ancestor_of <?php cat_is_ancestor_of( $cat1, $cat2 ); ?>
判断$cat1是否为$cat2的祖先分类.
get_all_category_ids <?php get_all_category_ids() ?>
返回所有分类的数组.
get_cat_ID <?php get_cat_ID( $cat_name ) ?>
根据分类名获取其ID.
get_cat_name <?php get_cat_name( $cat_id ) ?>
分居分类ID获取其名称.
get_categories <?php $categories = get_categories( $args ); ...
WP相关, 函数详解阅读全文
bloginfo_rss <?php bloginfo_rss( $show ) ?>
输出bloginfo函数的RSS容器。$show的有效值见:http://codex.wordpress.org/Function_Reference/get_bloginfo.
comment_author_rss <?php comment_author_rss() ?>
在订阅中显示当前评论的作者.
comment_link <?php comment_link() ?>
显示评论的链接.
comment_text_rss <?php comment_text_rss() ?>
在订阅中显示评论的内容.
do_feed <?php ...
WP相关, 函数详解阅读全文
add_magic_quotes <?php add_magic_quotes( $array ) ?>
过滤内容时访问数组中的每一个元素。
addslashes_gpc <?php addslashes_gpc( $gpc ) ?>
添加斜线以避免使用字符串。
antispambot <?php antispambot( $emailaddy, $mailto ) ?>
将电子邮件地址的字符转换为HTML实体以阻止广告机器人.
attribute_escape <?php echo attribute_escape($text); ?>
在HTML属性中,该函数对特定HTML字符(包...
WP相关, 函数详解阅读全文
current_time <?php current_time($type, $gmt = 0); ?>
函数current_time(“mysql”, $gmt)返回格式为“年-月-日 时:分:秒”的时间。如果$gmt=1,返回的时间为GMT时间;如果$gmt=0,返回的时间为浏览器客户端本地时间(由WordPress选项 gmt_offset决定,在“常规”菜单下的“时区”选项中进行设置)。
date_i18n <?php date_i18n( $dateformatstring, $unixtimestamp, $gmt ) ?>
根据时间标记检索本地格式的日期。如果...
WP相关, 函数详解阅读全文