get_page_link

函数
get_page_link ( $post = false, $leavename = false, $sample = false )
参数
  • (int|WP_Post) $post Optional. Post ID or object. Default uses the global `$post`.
    Required:
    Default: false
  • (bool) $leavename Optional. Whether to keep the page name. Default false.
    Required:
    Default: false
  • (bool) $sample Optional. Whether it should be treated as a sample permalink. Default false.
    Required:
    Default: false
返回值
  • (string) The page permalink.
定义位置
相关方法
_get_page_linkget_pagenum_linkget_tag_linkget_day_linkget_tag_feed_link
引入
1.5.0
弃用
-

get_page_link函数是一个WordPress的函数,通过它的ID检索一个页面的URL: 这个函数接受一个参数,即你要检索的页面的ID: 该函数返回该页面的URL。

检索当前页面或页面ID的固定链接。

尊重page_on_front。使用这个。

function get_page_link( $post = false, $leavename = false, $sample = false ) {
	$post = get_post( $post );

	if ( 'page' === get_option( 'show_on_front' ) && get_option( 'page_on_front' ) == $post->ID ) {
		$link = home_url( '/' );
	} else {
		$link = _get_page_link( $post, $leavename, $sample );
	}

	/**
	 * Filters the permalink for a page.
	 *
	 * @since 1.5.0
	 *
	 * @param string $link    The page's permalink.
	 * @param int    $post_id The ID of the page.
	 * @param bool   $sample  Is it a sample permalink.
	 */
	return apply_filters( 'page_link', $link, $post->ID, $sample );
}

常见问题

FAQs
查看更多 >