web-dev-qa-db-ja.com

スラッグからページリンクを取得することは可能ですか?

それだけでスラグからページのパーマリンクを取得することは可能ですか? get_page_link()を使ってIDからページのパーマリンクを取得できることを私は知っています:

<a href="<?php echo get_page_link(40); ?>">Map</a>

ページのスラッグを使って同じことをする方法があるかどうか私は興味があります - このように:

<a href="<?php echo get_page_link('map'); ?>">Map</a>
110
Sampson

あなたは正しいページについて話している?投稿しません。

これはあなたが探しているものですか?

  1. get_permalink( get_page_by_path( 'map' ) )
  2. get_permalink( get_page_by_title( 'Map' ) )
  3. home_url( '/map/' )
176
zeo

私はこれがより良いかもしれないと思います:

function get_page_by_slug($page_slug, $output = OBJECT, $post_type = 'page' ) {
    global $wpdb;
    $page = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_name = %s AND post_type= %s", $page_slug, $post_type ) );
    if ( $page )
            return get_page($page, $output);
    return null;
}

"オリジナル"のパターンに従う ワードプレスのget_page_by_title 。 (3173行目)

rgds

9
Matheus Eduardo

これはTom McFarlin が彼のブログで公開した方法です

/**
 * Returns the permalink for a page based on the incoming slug.
 *
 * @param   string  $slug   The slug of the page to which we're going to link.
 * @return  string          The permalink of the page
 * @since   1.0
 */
function wpse_4999_get_permalink_by_slug( $slug, $post_type = '' ) {

    // Initialize the permalink value
    $permalink = null;

    // Build the arguments for WP_Query
    $args = array(
        'name'          => $slug,
        'max_num_posts' => 1
    );

    // If the optional argument is set, add it to the arguments array
    if( '' != $post_type ) {
        $args = array_merge( $args, array( 'post_type' => $post_type ) );
    }

    // Run the query (and reset it)
    $query = new WP_Query( $args );
    if( $query->have_posts() ) {
        $query->the_post();
        $permalink = get_permalink( get_the_ID() );
        wp_reset_postdata();
    }
    return $permalink;
}

カスタム投稿タイプおよび組み込み投稿タイプ(postpageなど)で機能します。

6
shea

階層ページがそのように機能しないため、受け入れられた答えは間違っています。簡単に言うと、スラッグは常にページや投稿のパスではありません。例えば。あなたのページには、子供などがいます。パスはparent-slug/child-slugになり、get_page_by_pathはこの方法でchild-slugを見つけられません。適切な解決策はこれです:

function mycoolprefix_post_by_slug($the_slug, $post_type = "page"){
 $args = array(
   'name'        => $the_slug,
   'post_type'   => $post_type,
   'post_status' => 'publish',
   'numberposts' => 1
 );
 $my_page = get_posts($args)[0];
 return $my_page;
}

<a href="<?php echo mycoolprefix_post_by_slug('map'); ?>">Map</a>
2
Toskan

これを試して:

<a href="<?php echo get_page_link( get_page_by_path( 'map' ) ); ?>">Map</a>

get_page_by_path( 'path' )はpage/postオブジェクトを返します。これはpost/pageオブジェクトを受け付けてパーマリンクを返すため、get_page_link()で使用できます。

1
Sigma Wadbude
    function theme_get_permalink_by_title( $title ) {

    // Initialize the permalink value
    $permalink = null;

    // Try to get the page by the incoming title
    $page = get_page_by_title( strtolower( $title ) );

    // If the page exists, then let's get its permalink
    if( null != $page ) {
        $permalink = get_permalink( $page->ID );
    } // end if

    return $permalink;

} // end theme_get_permalink_by_title

この機能を使用する

if( null == theme_get_permalink_by_title( 'Register For This Site' ) ) {
  // The permalink doesn't exist, so handle this however you best see fit.
} else {
  // The page exists, so do what you need to do.
} // end if/else
0
user46487