欢迎莅临阿Q的项目

专业WP商业设计开发销售中心

[手册]WordPress之使用模板标签

什么是模板标签?模版标签是用来命令WordPress进行工作的代码。

13-Permalink tags 永久链接标签

get_permalink <?php $permalink = get_permalink( $id ); ?>
返回文章的永久链接.
get_post_permalink <?php get_post_permalink( $id, $leavename, $sample ); ?>
返回定制文章的永久链接.详情见:http://codex.wordpress.org/Template_Tags/get_post_permalink.(3.0新标签)
permalink_anchor <?php permalink_anchor( $type ); ?>
插入永久链接的锚点,$type是文章ID或文章名Title.
permalink_single_rss <?php permalink_single_rss( $file ); ?>
按 RSS  或Atom  聚合feed形式显示当前文章的永久链接, $file是链接所指向的页面. 默认为当前页面.
post_permalink <?php post_permalink(); ?>
...(3.0 新标签)
the_permalink <?php the_permalink(); ?>
输出当前文章的永久链接.

14-Shortlink tags 短链接标签

the_shortlink <?php the_shortlink(); ?>
...(3.0 新标签)
wp_get_shortlink <?php wp_get_shortlink(); ?>
...(3.0新标签)
wp_shortlink_header <?php wp_shortlink_header(); ?>
...(3.0 新标签)
wp_shortlink_wp_head <?php wp_shortlink_wp_head(); ?>
...(3.0 新标签)

15-Links Manager tags 链接管理标签

get_bookmark <?php get_bookmark( $bookmark, $output, $filter ) ?>
根据链接的ID输出相关信息,$output(字符串)(可选) OBJECT、ARRAY_N或ARRAY_A 常量,默认值:OBJECT.
get_bookmark_field <?php get_bookmark_field(); ?>
...(3.0新标签)
get_bookmarks <?php get_bookmarks( $args ); ?>
返回链接的数组, 详情见:http://codex.wordpress.org/Function_Reference/get_bookmarks.
wp_list_bookmarks <?php wp_list_bookmarks( $args ); ?>
输出链接的列表, 详情见:http://codex.wordpress.org/Template_Tags/wp_list_bookmarks

16-Edit Link tags 编辑链接标签

edit_bookmark_link <?php edit_bookmark_link( $link, $before, $after, $bookmark ); ?>
根据链接的ID输出编辑链接的链接,$link是连接名,$bookmark是链接ID.
edit_comment_link <?php edit_comment_link( $link, $before, $after ); ?>
输出编辑评论的链接.
edit_post_link <?php edit_post_link( $link, $before, $after, $id ); ?>
输出编辑文章的链接.$link是连接名,$id是文章ID.
edit_tag_link <?php edit_tag_link( $link, $before, $after, $tag ); ?>
输出编辑标签的链接.$link是连接名,$tag是标签ID.
如果喜欢本文,请分享给朋友们