17713433920 info@mac163.com
使用Get_Post按ID显示WordPress页面内容和标题
使用Get_Post按ID显示WordPress页面内容和标题

前几天有人问我如何以WordPress主题查询特定页面,以便他们可以在网站页脚的内容中显示该页面。在大多数情况下,使用主题时,您很可能从不查询页面,而是更像主题围绕帖子或自定义帖子类型,在这种情况下,您很可能使用get_posts,wp_query或query_posts函数。

要仅使用ID显示特定页面的内容,您很可能必须使用get_post函数,该函数返回该帖子/页面的数据库记录。而且使用该功能非常简单。下面,我粘贴了一个简单的get_post查询的简短代码,您可以对其进行更改以适合您的需求。

<?php
$my_page_id = 69; //your page or post ID
$my_page = get_post($my_page_id); //retrieves the page via the ID
$content = $my_page->post_content; //gets the unfiltered page content
$content = apply_filters('the_content', $content); //cleanup content
$content = str_replace(']]>', ']]&gt;', $content); //cleanup content
$title = $my_page->post_title; //retrieves page title and sets the variable
?>

<?php
echo $title; //show page title
echo $content; //show page content
?>

微信二维码

微信扫描二维码联系我们!
我们在微信上24小时期待你的声音
提供外贸路由器设备产品,轻松翻墙,解答:WP主题推荐,WP网站建设,Google SEO,百度SEO,专业服务器环境搭建等!


需要提供WordPress主题/插件的汉化服务可以随时联系我们!另外成品WordPress网站以及半成品WordPress网站建设,海外Google SEO优化托管服务,百度SEO优化托管服务,Centos/Debian服务器WP专用环境搭建,WP缓存服务器搭建,我们都是你的首选,拥有多年WP开源程序服务经验,我们一直在坚持客户体验,没有最好,只有更好!
回到顶部