Sülükünden bir sayfa bağlantısı almak mümkün müdür?


113

Bir sayfanın kalıcı bağlantısını yalnızca sümüklü böcekten elde etmek mümkün mü? Sayfanın kalıcı bağlantısını kullanarak kimliğinizden şunları alabileceğinizi biliyorum get_page_link():

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

Merak ediyorum bir sayfanın sümüklü böcek ile aynı şeyi yapmanın bir yolu varsa - böyle:

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

Yanıtlar:


183

Pages'den bahsediyorsun değil mi? Mesaj değil.

Aradığın şey bu mu:

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

4
Bunu mu demek istediniz get_permalink(get_page_by_path('contact')->ID));?
Sampson,

1
hmmm hayır? Kimlikte ne var?
zeo

3
get_page_by_path()tüm sayfa bilgilerinin bir dizisini döndürür. get_permalink()ilk argüman olarak bir sayfa kimliği alır. Kimlik değerini açıkça iletmem gerektiğini düşündüm.
Sampson

10
@Jonathan: Her zaman belgelenmemiş, ancak birçok WP işlevi hem sayısal kimlikleri hem de tam posta nesnelerini argüman olarak kabul ediyor.
Jan Fabry

1
Görünüşe göre get_page_by_path (), alt sayfalarla uğraşırken kullanımı oldukça karmaşık olabilir ...
Kaaviar

9

Bunun daha iyi olabileceğini düşünüyorum:

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_titleWordPress "orijinal" desenini izleyerek . (satır 3173)

rgds


11
Neden daha iyi olsun ki? Açıklayabilir misin?
julien_c

Son yorum - Bence 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 AND post_status = 'publish'", $page_slug, $post_type ) ); if ( $page ) return get_page($page, $output); return null; }

Neden? Yalnızca kimliği almak için tam bir yayın nesnesi oluşturmaz.
s_ha_dum

@webcitron Ben sadece 'slug' için değiştirerek, 'başlık' ile gönderiliyor Wordpress orijinal desen takip ediyor çünkü düşünüyorum. ( bağlantıyı kontrol et )
Matheus Eduardo

Bu iyi bir cevap. Bu, sayfanızı maskeleyen veya yanlış şekilde filtreleyen sahte bir eklentinin olasılığını atlar. Kimliği tablodan döndürürseniz, \WP_Postondan bir örnek oluşturabilirsiniz ve bu, doğrudan diğer değerleri denetleyen tüm wordpress işlevlerinde çözümlenir. \WP_Postayrıca gönderiyle ilgili en alakalı verileri bulmak için doğrudan yöntemler sağlar.
mopsyd

6

Tom McFarlin tarafından blogunda yayınlanan bir yöntem :

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

Özel yazı tipleri ve yerleşik yazı tipleri ( postve gibi page) ile çalışır.


2

Kabul edilen cevap yanlış çünkü hiyerarşik sayfalar böyle çalışmıyor. Basitçe söylemek gerekirse, sümüklü böcek her zaman sayfanın veya yazının yolu değildir. Örneğin, sayfanızın bir çocuğu var. Yol bu olacak parent-slug/child-slugve bu yolu get_page_by_pathbulamayacak child-slug. Uygun çözüm şudur:

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>

1

Bunu dene:

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

get_page_by_path( 'path' )sonra sayfa / post nesnesini get_page_link()kabul ettiği ve kullandığı kalıcı bağlantıyı döndürdüğü zaman kullanılabilecek sayfa / yazı nesnesini döndürür.


2
Lütfen cevabınızı düzenleyin ve bir açıklama ekleyin: bu neden sorunu çözdü?
fuxia

0
    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

Bu işlevi kullan

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
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.