IS_ACCOUNT_PAGE()更改为页面插件 时间:2021-01-31 作者:Cha 我对wordpress php真的很陌生。我应该使用哪个函数替换代码中的\\u account\\u page()。这是我之前努力实现的目标if (is_account_page()){ do some code here } 之后if (user on this page slug){ do some code here } 我应该为user on this page slug 部分 1 个回复 最合适的回答,由SO网友:Q Studio 整理而成 您可以尝试使用is\\u page()函数-https://developer.wordpress.org/reference/functions/is_page/函数签名接受一个参数-$页(int | string | int[]| string[])(可选)要检查的页面ID、标题、slug或数组。默认值:“”if ( is_page(\'account\') ){ // do some code here } 文章导航