wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



get_page_link › WordPress Function

Depuis1.5.0
Dépréciéen/a
get_page_link ( $post = false, $leavename = false, $sample = false )
Paramètres: (3)
  • (int|WP_Post) $post Optional. Post ID or object. Default uses the global `$post`.
    Requis: Non
    Défaut: false
  • (bool) $leavename Optional. Whether to keep the page name. Default false.
    Requis: Non
    Défaut: false
  • (bool) $sample Optional. Whether it should be treated as a sample permalink. Default false.
    Requis: Non
    Défaut: false
Retourne:
  • (string) The page permalink.
Défini(e) dans:
Codex:

Retrieves the permalink for the current page or page ID.

Respects page_on_front. Use this one.


Source

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