ループを使用せずに単一の投稿を表示したい場合は、次を使用します。
<?php
$post_id = 54;
$queried_post = get_post($post_id);
echo $queried_post->post_title; ?>
問題は、サイトを移動すると、通常IDが変更されることです。この投稿をスラッグでクエリする方法はありますか?
ループを使用せずに単一の投稿を表示したい場合は、次を使用します。
<?php
$post_id = 54;
$queried_post = get_post($post_id);
echo $queried_post->post_title; ?>
問題は、サイトを移動すると、通常IDが変更されることです。この投稿をスラッグでクエリする方法はありますか?
回答:
WordPressコーデックスから:
<?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;
?>
echo $my_posts[0]->post_content
どうですか?
<?php
$queried_post = get_page_by_path('my_slug',OBJECT,'post');
?>
wordpress 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 );
}
'no_found_rows' => true
せるために、get_posts引数にも追加します。