您可能会遇到这个错误,因为WordPress由于某种原因尚未加载$wp\\U rewrite global。要么是某个东西停用了它,要么你正试图在WordPress有机会加载它之前运行这些功能。
如果你想在插件或主题函数中实现这一点。php文件,请确保您位于连接到after\\u setup\\u主题或a hook that runs sometime after. 例如:
function get_url_of_page_id_165() {
return get_permalink( 165 );
}
add_action( \'after_setup_theme\', \'get_url_of_page_id_165\' );