WordPress:Template Tags/the ID
来自站长百科
描述[ ]
显示当前文章的ID数字。必须在The Loop内使用这个标签。
用法[ ]
%%% <?php the_ID(); ?> %%%
例子[ ]
默认用法[ ]
<p>Post Number: <?php the_ID(); ?></p>
文章 Anchor标示符[ ]
为每篇文章提供一个独一的anchor 标示符: <h3 id="post-<?php the_ID(); ?>"><?php the_title(); ?></h3>
注意:在XHTML中,id
属性不能以一个阿拉伯数字开始。因为the_ID
返回文章ID作为数字数据,你至少要在ID中包含一个字母字符,才能将这个ID用在id
属性,就如上述的例子那样。
参数[ ]
这个标签没有参数。
相关的[ ]
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,