wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



permalink_anchor › WordPress Function

Od0.71
Przestarzałyn/a
permalink_anchor ( $mode = 'id' )
Parametry:
  • (string) $mode Optional. Permalink mode. Accepts 'title' or 'id'. Default 'id'.
    Wymagane: Nie
    Domyślny: 'id'
Zdefiniowane na:
Codex:

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.


Źródło

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;
	}
}