[php] 슬러그에 의한 WordPress 쿼리 단일 게시물

루프를 사용하지 않고 단일 게시물을 표시하려는 순간에는 다음을 사용합니다.

<?php
$post_id = 54;
$queried_post = get_post($post_id);
echo $queried_post->post_title; ?>

문제는 내가 사이트를 이동할 때 일반적으로 ID가 변경된다는 것입니다. 슬러그로이 게시물을 조회하는 방법이 있습니까?



답변

WordPress Codex에서 :

<?php
$the_slug = 'my_slug';
$args = array(
  'name'        => $the_slug,
  'post_type'   => 'post',
  'post_status' => 'publish',
  'numberposts' => 1
);
$my_posts = get_posts($args);
if( $my_posts ) :
  echo 'ID on the first post found ' . $my_posts[0]->ID;
endif;
?>

WordPress Codex 게시물 받기


답변

어때요?

<?php
   $queried_post = get_page_by_path('my_slug',OBJECT,'post');
?>


답변

저렴하고 재사용 가능한 방법

function get_post_id_by_name( $post_name, $post_type = 'post' )
{
    $post_ids = get_posts(array
    (
        'post_name'   => $post_name,
        'post_type'   => $post_type,
        'numberposts' => 1,
        'fields' => 'ids'
    ));

    return array_shift( $post_ids );
}


답변

워드 프레스 API가 변경되었으므로 매개 변수 ‘post_name’과 함께 get_posts를 사용할 수 없습니다. Maartens 기능을 약간 수정했습니다.

function get_post_id_by_slug( $slug, $post_type = "post" ) {
    $query = new WP_Query(
        array(
            'name'   => $slug,
            'post_type'   => $post_type,
            'numberposts' => 1,
            'fields'      => 'ids',
        ) );
    $posts = $query->get_posts();
    return array_shift( $posts );
}


답변