WordPress:Template Tags/the ID

来自站长百科
Fludlen讨论 | 贡献2008年7月9日 (三) 15:30的版本
跳转至: 导航、​ 搜索

Description

描述

Displays the numeric ID of the current post. This tag must be within WordPress:The Loop.

显示当前文章的ID数字。必须在The Loop内使用这个标签。

Usage

用法

%%% <?php the_ID(); ?> %%%

%%% <?php the_ID(); ?> %%%

Examples

Default Usage

例子

默认用法

<p>Post Number: <?php the_ID(); ?></p>

<p>Post Number: <?php the_ID(); ?></p>

Post Anchor Identifier

文章 Anchor标示符

Provides a unique anchor identifier to each post: 为每篇文章提供一个独一的anchor 标示符:

<h3 id="post-<?php the_ID(); ?>"><?php the_title(); ?></h3>

<h3 id="post-<?php the_ID(); ?>"><?php the_title(); ?></h3>

Note: In XHTML, the id attribute must not start with a digit. Since the_ID returns the post ID as numerical data, you should include at least one alphabetical character before using it in an id attribute, as in the example above.

注意:在XHTML中,id属性不能以一个阿拉伯数字开始。因为the_ID返回文章ID作为数字数据,你至少要在ID中包含一个字母字符,才能将这个ID用在id属性,就如上述的例子那样。

Parameters

参数

This tag has no parameters.

这个标签没有参数。

Related

相关的

模板:Tag Post Tags

模板:No Param Tag Footer the_ID, the_title, the_title_attribute, single_post_title, the_title_rss, the_content, the_content_rss, the_excerpt, the_excerpt_rss, previous_post_link, next_post_link, posts_nav_link, the_meta,