ในช่วงเวลาที่ฉันต้องการแสดงโพสต์เดียวโดยไม่ใช้ลูปฉันใช้สิ่งนี้:
<?php
$post_id = 54;
$queried_post = get_post($post_id);
echo $queried_post->post_title; ?>
ปัญหาคือเมื่อฉันย้ายไซต์ id มักจะเปลี่ยนไป มีวิธีสอบถามโพสต์นี้โดย slug หรือไม่?
ในช่วงเวลาที่ฉันต้องการแสดงโพสต์เดียวโดยไม่ใช้ลูปฉันใช้สิ่งนี้:
<?php
$post_id = 54;
$queried_post = get_post($post_id);
echo $queried_post->post_title; ?>
ปัญหาคือเมื่อฉันย้ายไซต์ id มักจะเปลี่ยนไป มีวิธีสอบถามโพสต์นี้โดย slug หรือไม่?
คำตอบ:
จาก 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;
?>
echo $my_posts[0]->post_content
เกี่ยวกับ?
<?php
$queried_post = get_page_by_path('my_slug',OBJECT,'post');
?>
my-slug
ควรกลายเป็นmy-parent-slug/my-slug
: codex.wordpress.org/Function_Reference/…
เป็นวิธีที่ไม่แพงและใช้ซ้ำได้
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 ของ wordpress มีการเปลี่ยนแปลงคุณจึงไม่สามารถใช้ get_posts กับ param 'post_name' ได้ ฉันได้แก้ไขฟังก์ชั่น 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 ด้วย