Wordpress 3.0
我希望使用帖子的title
将特定帖子的内容放入页面中。据我所知,我无法直接使用get_post()
。
我可以假设蛮力的方式可能是什么,但我怀疑有更优雅的方式?
答案 0 :(得分:34)
get_page_by_title($id, OBJECT, 'post');
你去了。
答案 1 :(得分:5)
<!--1.Get post ID by post title if you know the title or the title variable-->
<?php
$posttitle = 'post_title';
$postid = $wpdb->get_var( "SELECT ID FROM $wpdb->posts WHERE post_title = '" . $posttitle . "'" );
echo $postid;
?>
<!--2.use get_post($post_id) to get whatever you want to echo-->
<?php
$getpost= get_post($postid);
$postcontent= $getpost->post_content;
echo $postcontent;
?>
答案 2 :(得分:4)
当你可以使用wordpress自己的函数时,不需要SQL查询。
$page = get_page_by_title( 'Startsida' );
$page_id = $page->ID;
答案 3 :(得分:2)
post_exists是一个很好的功能:
https://developer.wordpress.org/reference/functions/post_exists/
<?php
$post_id = post_exists('Your title');
// return id or 0 if post doesn't exists.
if($post_id>0)
get_post($post_id);
答案 4 :(得分:1)
有关非常相似的问题,请参阅my answer。 不使用非转义字符串查询数据库。
答案 5 :(得分:1)
您可以使用:
1)
global $wpdb;
$your_title = "yourtitle";
$id = $wpdb->get_var("SELECT ID FROM $wpdb->posts WHERE post_name = $your_title");
echo $id;
或2)
$slug_to_get = 'my_title_or_slug';
// you can use custom post type too
$posttypee='post';
$args=array(
'title' => $slug_to_get,
'post_type' => $posttypee,
'post_status' => 'publish'
);
$my_posts = get_posts($args);
if( $my_posts ) {
echo 'ID on the first post found '.$my_posts[0]->ID;
}