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
}

相关推荐

Functions.php中的上次更新帖子快捷代码

我正在搜索在函数中创建一个短代码。php子主题,用缩略图显示上次更新的帖子。我有以下代码可用于页面模板: <ol class="list-numbered"> <?php // Show recently modified posts $recently_updated_posts = new WP_Query( array( \'post_type\' => \'post\