问题描述
当我想要显示一个单独的帖子而不使用循环的那一刻,我用这个:
<?php
$post_id = 54;
$queried_post = get_post($post_id);
echo $queried_post->post_title; ?>
问题是当我移动网站时,id 通常会发生变化。有没有办法通过 slug 查询这个帖子?
最佳解决办法
从 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;
?>
次佳解决办法
怎么样?
<?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 );
}
参考文献
注:本文内容整合自 Google/Baidu/Bing 辅助翻译的英文资料结果。如果您对结果不满意,可以加入我们改善翻译效果:薇晓朵技术论坛。