wpseek.com
WordPress开发者和主题制作者的搜索引擎



permalink_anchor › WordPress Function

Since0.71
已弃用n/a
permalink_anchor ( $mode = 'id' )
参数:
  • (string) $mode Optional. Permalink mode. Accepts 'title' or 'id'. Default 'id'.
    Required: No
    默认: 'id'
定义在:
文档:

Displays the permalink anchor for the current post.

The permalink mode title will use the post title for the 'a' element 'id' attribute. The id mode uses 'post-' with the post ID for the 'id' attribute.


源码

function permalink_anchor( $mode = 'id' ) {
	$post = get_post();
	switch ( strtolower( $mode ) ) {
		case 'title':
			$title = sanitize_title( $post->post_title ) . '-' . $post->ID;
			echo '<a id="' . $title . '"></a>';
			break;
		case 'id':
		default:
			echo '<a id="post-' . $post->ID . '"></a>';
			break;
	}
}