93

ループを使用せずに単一の投稿を表示したいときは、これを使用します。

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

問題は、サイトを移動すると、通常、ID が変更されることです。この投稿をスラッグでクエリする方法はありますか?

4

5 に答える 5

133

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 投稿を取得

于 2013-02-20T12:59:40.603 に答える
10

安価で再利用可能な方法

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 );
}
于 2016-04-03T09:39:29.337 に答える