関数 permalink_anchor()
2015/01/14
関数 permalink_anchor()
定義ファイル :/blog/wp-includes/link-template.php
1 2 3 4 5 6 7 8 9 10 11 12 13 | 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; } } |