Lines:
1 to 100 of 248
<?php /** * WordPress Link Template Functions * * @package WordPress * @subpackage Template */ /* function the_permalink() – Displays the permalink for the current post. */ /* function user_trailingslashit() – Retrieves a trailing-slashed string if the site is set for adding trailing slashes. */ /* function permalink_anchor() – Displays the permalink anchor for the current post. */ /* function wp_force_plain_post_permalink() – Determine whether post should always use a plain permalink structure. */ /* function get_the_permalink() – Retrieves the full permalink for the current post or post ID. */ /* function get_permalink() – Retrieves the full permalink for the current post or post ID. */ /* function get_post_permalink() – Retrieves the permalink for a post of a custom post type. */ /* function get_page_link() – Retrieves the permalink for the current page or page ID. */ /* function _get_page_link() – Retrieves the page permalink. */ /* function get_attachment_link() – Retrieves the permalink for an attachment. */ /* function get_year_link() – Retrieves the permalink for the year archives. */ /* function get_month_link() – Retrieves the permalink for the month archives with year. */ /* function get_day_link() – Retrieves the permalink for the day archives with year and month. */ /* function the_feed_link() – Displays the permalink for the feed type. */ /* function get_feed_link() – Retrieves the permalink for the feed type. */ /* function get_post_comments_feed_link() – Retrieves the permalink for the post comments feed. */ /* function post_comments_feed_link() – Displays the comment feed link for a post. */ /* function get_author_feed_link() – Retrieves the feed link for a given author. */ /* function get_category_feed_link() – Retrieves the feed link for a category. */ /* function get_term_feed_link() – Retrieves the feed link for a term. */ /* function get_tag_feed_link() – Retrieves the permalink for a tag feed. */ /* function get_edit_tag_link() – Retrieves the edit link for a tag. */ /* function edit_tag_link() – Displays or retrieves the edit link for a tag with formatting. */ /* function get_edit_term_link() – Retrieves the URL for editing a given term. */ /* function edit_term_link() – Displays or retrieves the edit term link with formatting. */ /* function get_search_link() – Retrieves the permalink for a search. */ /* function get_search_feed_link() – Retrieves the permalink for the search results feed. */ /* function get_search_comments_feed_link() – Retrieves the permalink for the search results comments feed. */ /* function get_post_type_archive_link() – Retrieves the permalink for a post type archive. */ /* function get_post_type_archive_feed_link() – Retrieves the permalink for a post type archive feed. */ /* function get_preview_post_link() – Retrieves the URL used for the post preview. */ /* function get_edit_post_link() – Retrieves the edit post link for post. */ /* function edit_post_link() – Displays the edit post link for post. */ /* function get_delete_post_link() – Retrieves the delete posts link for post. */ /* function get_edit_comment_link() – Retrieves the edit comment link. */ /* function edit_comment_link() – Displays the edit comment link with formatting. */ /* function get_edit_bookmark_link() – Displays the edit bookmark link. */ /* function edit_bookmark_link() – Displays the edit bookmark link anchor content. */ /* function get_edit_user_link() – Retrieves the edit user link. */ // // Navigation links. // /* function get_previous_post() – Retrieves the previous post that is adjacent to the current post. */ /* function get_next_post() – Retrieves the next post that is adjacent to the current post. */ /* function get_adjacent_post() – Retrieves the adjacent post. */ /* function get_adjacent_post_rel_link() – Retrieves the adjacent post relational link. */ /* function adjacent_posts_rel_link() – Displays the relational links for the posts adjacent to the current post. */