WordPress: Template Tags/the ID:修订间差异

来自站长百科
跳转至: 导航、​ 搜索
(新页面: == Description == Displays the numeric ID of the current post. This tag must be within WordPress:The Loop. == Usage == %%% <?php the_ID(); ?> %%% == Examples == === Default Usage...)
 
无编辑摘要
第1行: 第1行:
== Description ==
== Description ==
== 描述 ==


Displays the numeric ID of the current post. This tag must be within [[WordPress:The Loop]].
Displays the numeric ID of the current post. This tag must be within [[WordPress:The Loop]].
显示当前文章的ID数字。必须在[[WordPress:The Loop|The Loop]]内使用这个标签。


== Usage ==
== Usage ==
== 用法 ==
%%% <?php the_ID(); ?> %%%


%%% <?php the_ID(); ?> %%%
%%% <?php the_ID(); ?> %%%
第10行: 第18行:


=== Default Usage ===
=== Default Usage ===
==例子 ==
===默认用法===


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


=== Post Anchor Identifier ===
=== Post Anchor Identifier ===
=== 文章 Anchor标示符 ===


Provides a unique anchor identifier to each post:
Provides a unique anchor identifier to each post:
为每篇文章提供一个独一的anchor 标示符:
&lt;h3 id="post-<?php the_ID(); ?>"&gt;<?php the_title(); ?>&lt;/h3&gt;


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


<strong>Note</strong>: In XHTML, the <code>id</code> attribute must not start with a digit. Since <code>the_ID</code> returns the post ID as numerical data, you should include at least one alphabetical character before using it in an <code>id</code> attribute, as in the example above.
<strong>Note</strong>: In XHTML, the <code>id</code> attribute must not start with a digit. Since <code>the_ID</code> returns the post ID as numerical data, you should include at least one alphabetical character before using it in an <code>id</code> attribute, as in the example above.
<strong>注意</strong>:在XHTML中,<code>id</code>属性不能以一个阿拉伯数字开始。因为<code>the_ID</code>返回文章ID作为数字数据,你至少要在ID中包含一个字母字符,才能将这个ID用在<code>id</code>属性,就如上述的例子那样。


== Parameters ==
== Parameters ==
== 参数 ==


This tag has no parameters.
This tag has no parameters.
这个标签没有参数。


== Related ==
== Related ==
== 相关的==


{{Tag Post Tags}}
{{Tag Post Tags}}


{{No Param Tag Footer}}
{{No Param Tag Footer}}
{{标签文章标签}}
{{没有 Param标签页底文字}}

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,