这取决于你想做什么。
如果要在其他模板或函数文件中获取页面内容,并且您的主页是在仪表板中创建并设置为static front page
您可以使用get_page_by_path
功能如下:
get_page_by_path(\'the_path_of_the_page\'); // Usually will be \'home\'
或者如果你想使用
get_pages
您可以执行以下操作:
<?php $args = array(
\'post_type\' => \'page\',
\'post_status\' => \'publish\',
\'post_name\' => \'the_slug_of_the_page\' // This also will likely be \'home\' for the home page\'
);
$home = get_pages($args);
?>
请参见
get_page_by_path 在法典中。